Bash Flashcards
retrieve the value of the variable x
$x
explicitly declare variable to integer or array
declare -i i
declare -a A
print string including variable x
echo “Hei, $x”
command line arguments
$#
$1, $2, $3…
$@ for all
exit status of the last executed command
$?
comparisons and if-statements
Integer comparison (but don’t use it)
if [ $i -eq 10 ]; then
…
fi
String comparison
if[ “$name” == “Henrik” ]; then
…
fi
Solution: Assume all variables are strings and use double quotes when comparing
verbose
!/bin/sh -x
list files in tree
ls -R # –Recursive
search
fgrep [pattern] [file] -r # fixed
grep [pattern] [file] -r # regex
ls | grep ^A
store result of command as a variable
time = $(date)
list files sorted
ls -s | sort -r
ls -Ss
if/else-statements
if [ -a $path ]; then ... elif [ -d $path ]; then ... else ... fi
write to file from stdin
cat > file.txt
while-loop
read command arguments one by one
while [ $# -gt 0 ] do print $1; shift; done
append to file
cat appendThis»_space; toThis
for-loop removing all PDF-files
files = ‘ls *.pdf’
for file in $files
do
rm -f $file
done
arithmetic expressions
((counter++))
declare -i i
for ((i=0; i < $n; i++)); do
…
done
search for files and run a command for each file
find dir -name *.txt -exec cat {} \; # {} is the current filename
man find
- name ‘*.pdf’
- type f
- size +200
- exec … {} \;
- atime +90 # days
pack files into one file
tar -cvf files.tar mytree file1 file2
unpack tar
tar -xvf files.tar
list new files
declare -i minuteLimit = “$2*3600”
find $1 -type f -mmin -$minuteLimit -print | xargs ls -1Ssk
remove large files
find $1 -type f -size +$2k -print -exec rm {} \;
sort file into another file
sort $1 -o $2