# concatinate
cat file.txt
# head
head -n[no of lines] file.txt
# tail
tail -n[no of lines] file.txt
wc file.txt
# w/o filename
cat file.txt | wc
- -a - all files
- -l - file permissions
- -t - order by modification time descending
- -S - order by size descending
- -r - reverse order
- \s - Whitespace
- \d - digit
- \x - hex digit
- \o - octal
- \h - head of word character ([A-Za-z_])
- \p - printable character
- \w - word character
- \a - alphabetic
- \l - lowercase
- \u - uppercase
- ^ - start of string/line
- $ - end of string/line
cut -f[field number] -d[delimiter]
awk -F[delimiter] '{print $1 $2 $3 "you can join strings in here too!" }'
if [[ "$aaa" = bbb ]]; then
...
elif [[ "$aaa" = ccc ]]; then
...
else
...
fi
# definition
stringed_number=$(( 1 + 4 ))
# if statements
if [ $(( $a % 4 )) -eq 0 ]; then
...
fi
# store output into var
output=$(echo "hi")
# number of arguments
$#
# array of arguments
#@
# string of all arguments concatinated
#*
whoami
# all groups
id -g
# my groups
id -G
# my group names
id -Gn
- u - user
- g - group
- o - others
- r - read
- w - write
- x - execute
# redirection
1>&2
2>&1
# etc..
while [[ true ]]; do
...
done
# you can also use ((i=1;i<=5;i++))
for i in 1 2 3 4; do
...
done
# global
:s/foo/bar/g
# on every line globally
:%s/foo/bar/g
:[line number]
# EOF
:$
- I - BOL
- i - left of cursor
- A - EOL
- a - right of cursor
- x - at cursor
- D - cursor to EOL
- dd - line
- d[n]d - n lines
- dw - word
- d[n]w - n words
- dG - cursor to EOF
- d[n]G - cursor to line n
m[letter]
'[letter]