Bash: Difference between revisions
From DWIKI
mNo edit summary |
mNo edit summary |
||
Line 8: | Line 8: | ||
*[http://subsignal.org/doc/AliensBashTutorial.html Aliens Bash Tutorial] | *[http://subsignal.org/doc/AliensBashTutorial.html Aliens Bash Tutorial] | ||
*http://www.skorks.com/2009/09/bash-shortcuts-for-maximum-productivity/ | *http://www.skorks.com/2009/09/bash-shortcuts-for-maximum-productivity/ | ||
*[https://ss64.com/bash/syntax-keyboard.html Bash Keyboard Shortcuts] | |||
=Tips and tricks= | =Tips and tricks= |
Revision as of 17:35, 22 August 2017
- Homepage
- http://www.linuxdoc.org/HOWTO/Bash-Prog-Intro-HOWTO.html
- Shortcuts to move faster in Bash command line
- Bash Guide for Beginners
- http://www.ling.helsinki.fi/users/reriksso/unix/shell.html
- Advanced Bash Scripting Guide
- Linux Shell Scripting Tutorial
- Aliens Bash Tutorial
- http://www.skorks.com/2009/09/bash-shortcuts-for-maximum-productivity/
- Bash Keyboard Shortcuts
Tips and tricks
get first character of a string
FIRST=${STRING:0:1}
check if var contains substring
test "${s#*foo}" != "${s}"
move cursor
^b move back 1 char ^f move forward 1 char alt-b move back 1 word alf-f move forward 1 word