Bash Flashcards
Bash: how to delete from cursor to beginning of word?
ctrl-w
Bash: how to jump to end of line?
ctrl-e
Bash: how to jump to the beginning of line?
ctrl-a
Bash: how to jump one word backwards?
alt-b
Bash: how to jump one word forwards?
alt-f
Bash: how to delete from cursor to end of line?
ctrl-k
Bash: how to delete from cursor to beginning of line?
ctrl-u
Bash: how to go to previous directory (.bashrc shorthand)?
$ bd
Bash: how to go to previous directory with builtin?
$ cd -
Bash: how to do arithmetic calculations?
$(( expression ))
Bash: how to reuse argument of previous command?
!$
or
!:1
Example:
$ ls hello
$ ls !$
Bash: how to paste from special clipboard (ctrl-u & k use)?
ctrl-y
Bash: how to save output of command to file (overwrite)?
$ cmd > filename
Bash: how to save output of command to file (append)?
$ cmd»_space; filename
Bash: which command argument is usually used to display output (expanded format) before execution?
-x
Bash: how to display history of commands?
$ history
Bash: after displaying history - how to execute command by number?
$ !83
Bash: how to execute/reference previous command?
$ !!
or
$ !-1
Example:
$ echo /etc/test
$ sudo !!
Bash: How to execute command from history by keywords?
$ !?keyword
Bash: how to replace words from previous command (for example create file and view content)?
^search^replace^
Bash: how to get the first argument of a command starting with x?
!keyword:^
Example:
$ ls test
$ cd hallo
$ ls !ls:^
Bash: how to get filename of path from previous command?
!!:$:t
Example:
$ cat /etc/test/hallo.txt
$ vim !!:$:t
returns: hallo.txt
Bash: how to delete extension from path from previous command?
!!:$:r
Example:
$ cat /etc/test/hallo.txt
$ vim !!:$:t
returns: /etc/test/hallo
Bash: How to do sed like substitution of previous command?
!!:s/search/replace
Bash: how to repeat previous substitution on previous command?
!!:g&
& becomes a and sign (has been escaped)
Bash: how to print substition before executing it?
append “:p” to substitution
Bash: how to change 3 directories up (own helper in .bashrc)
$ ….
Bash: how to change 2 directories up (own helper in .bashrc)
$ …
Bash: how to change 1 directory up (own helper in .bashrc)
$ ..
Bash: how to securely clear the screen of terminals?
$ clear
Bash: how to append text found by delimiter of another file into another file (heredocument syntax)?
$ cat»_space; path/to/file «_space;””
Bash: how to save current directory as name “test” to bashmarks?
$ s test
Bash: how to list all bashmarks folders and names?
$ l
Bash: how to go to bashmark with name test?
$ g test
Bash: how to get the first column of output?
$ | awk -v col=1 ‘{print $col}’
Bash: how to create directories for folder names inside file?
for a in cat ./dirs
; do mkdir $a; done
Bash: what is xargs used for?
It is used to build and execute command lines from standard input. For example:
$ cat dirs | xargs mkdir
will use cat to take the strings (be it newline or blank character separated) from file ‘dirs’ and pass them through pipe to xargs which will then send one by one line as argument to mkdir which will then create those dirs or complain if those are existent.
Bash: how to delete filename (get folder) from path of previous command?
!!:$:h
Example:
$ cat /test/hallo.txt
$ cd !!:$:h
Bash: how to get the first argument of the previous command?
!!:^
Bash: how to jump between start of line and cursor position?
ctrl-xx
Bash: how to delete from cursor to end of word?
alt-d
Bash: how to swap character with previous one?
ctrl-t
Bash: how to delete character before cursor?
ctrl-h
Bash: how to delete character under cursor?
ctrl-d
Bash: how to enter the search mode in history by keywords?
ctrl-r
Bash: how to get the previous command (instead of arrow up)?
ctrl-p
Bash: how to get the next command (instead of arrow down)?
ctrl-n
Bash: how to get the last word of the previous command with shortcuts?
alt-.
Bash: how to make lowercase from cursor to end of word?
alt-l
Bash: how to make uppercase from cursor to end of word?
alt-u
Bash: how to run a command found in history mode (ctrl-r)?
ctrl-o
Bash: how to scroll one line up?
ctrl-shift-arrow up
Bash: how to scroll one line down?
ctrl-shift-arrow down
Bash: how to swap word with previous one?
alt-t
Bash: how to remove preceding path from filename in variable f?
${f##*/}
Bash: how to remove extension from filename in variable f?
${f%.*}
Bash: how to replace string in variable (first occurance)?
${variable/search/replace}
${$var… not working!
Bash: how to remove string at beginning of variable?
${var#string_to_remove}
Bash: how to remove string at end of variable?
${var%string_to_remove}
Bash: how to replace all occurances of search with replace in variable?
${variable//search/replace}
${$var… not working!
Bash: how to get the Process ID of a process with name “x”?
pidof x
Bash: how to kill process with id x?
kill x
Bash: how to kill process listening on port?
fuser -n tcp -k 9001
Bash: how to copy files an rename?
for file in bin/docker-create-build-*.in; do cp $file ${file/local/live}; done
Bash: how to get files which changed in the last 2 mins?
find . -mmin -2 -type f print
Bash: How to search for string starting with “test” and only print the match?
echo “test32. 23232. 23232” | grep -o ‘test[^\s]*’
Bash: How to get item index 0 from array x?
${x[0]}
Bash: How to iterate over an array with a for loop counting the index?
for ((x = 0; x < ${#array[@]}; x++)); then…
Bash: how to fer the exit status of decent Command?
$?
Bash: how to get the Process id of a Bash Command ein in background?
it Returns the process id
Bash: How to list directories recursively?
find . -type d -print
Bash: how to list files recursively?
find . -type f -print
Bash: how to remove all files execpt?
rm -r !(file1|file2)