Bash Scripting Language Cheat Sheet Cheat Sheet by Danilobanjac - Download Free From Cheatography - Cheatography - Com - Cheat Sheets For Every Occasion
Bash Scripting Language Cheat Sheet Cheat Sheet by Danilobanjac - Download Free From Cheatography - Cheatography - Com - Cheat Sheets For Every Occasion
This is a draft cheat sheet. It is a work in progress and is not finished yet.
ls --help | grep "\-U" This will grab more information about "-U" command.
echo "here is This will write to the file that we first created.
something use it" >
wood.txt
cat {testfile01,testfi- This will take as many files as we want and store the
le02} > test00 content of those file in one file in this case "test00".
echo "here is This will replace the whole content of the wood.txt file
something new" > with this new content, if we want to add to file we need
wood.txt to use the command from below.
: > wood.txt This will empty the whole file, remeber ":" that says do
nothing.
touch test1 test2 for example if we create a hundreds of file with similar
test3 test4 name how we could delete them all or select them all?
(Solution below).
rm test* ("*" astrix sign will mark everything that begins with
test and delete it.
Vim Commands
1 of 3 2/12/24, 2:35
Bash Scripting Language Cheat Sheet Cheat Sheet by... https://cheatography.com/danilobanjac/cheat-sheets/b...
Part One (Variables and Parameters) Bash Script Programming Language Basics
CONNECTING IF STATEMENTS:
- var=1
if [ "$var" -gt 0 ] && [ "$var" -eq 10 ]; then echo "THEN PART"; else echo "HELLOOO"; fi (Example with logical "and" statm
var=1
if [ "$var" -gt 0 ] || [ "$var" -eq 10 ]; then echo "THEN PART"; else echo "HELLOOO"; fi (Example with logical "or" statme
MODULO:
- let var=5%4
echo "$var" (Result will be one)
STRING UPPER CASE:
- some_word=tEsT
echo "${some_word^}" (This will grab first letter and make it upper case)
echo "${some_word^^}" (This will grab whole word and make it upper case)
bash
2 of 3 2/12/24, 2:35
Bash Scripting Language Cheat Sheet Cheat Sheet by... https://cheatography.com/danilobanjac/cheat-sheets/b...
PDF (recommended)
PDF (5 pages)
Alternative Downloads
(0) (1)
© 2011 - 2024 Cheatography.com | CC License | Terms | Privacy Latest Cheat Sheets RSS Feed
3 of 3 2/12/24, 2:35