Skip to content

Commit

Permalink
Format unix commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaehn committed Mar 22, 2024
1 parent 18e1933 commit 1815c07
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions beginner/Unix_Commands.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
"In this Git course some very basic Unix commands will be used.\n",
"This document describes **ALL** commands needed below:\n",
"\n",
" * **ls:** list all files/folders in current directory\n",
" * `ls`: list all files/folders in current directory\n",
" \n",
" * **cd:** change directory, e.g. *cd test* will go to folder 'test'. To go one directory up, type *cd ..** \n",
" * `cd`: change directory, e.g. `cd test` will go to folder 'test'. To go one directory up, type `cd ..` \n",
" \n",
" * **cat:** concatenate files, in our case we only use it to display the content of text file, e.g. *cat my_file.txt* prints the content of *my_file.txt* to the terminal.\n",
" * `cat`: concatenate files, in our case we only use it to display the content of text file, e.g. `cat my_file.txt` prints the content of *my_file.txt* to the terminal.\n",
" \n",
" * **source:** run script in the current shell, this means that all variables and functions defined in that file will be available in the current shell\n",
" * `source`: run script in the current shell, this means that all variables and functions defined in that file will be available in the current shell\n",
" \n",
" * **echo:** display a line of text\n",
" * `echo`: display a line of text\n",
" \n",
" * **>:** redirect ouput to file/device after *>*, overwrites already existing file\n",
" * **>>:** redirect output to file/device after *>>*, does not delete already existing file. \n",
" * **mkdir:** create directory/folder, e.g. *mkdir test* will create directory 'test' "
" * `>`: redirect ouput to file/device after `>`, overwrites already existing file\n",
" * `>>`: redirect output to file/device after `>>`, appends and does not delete already existing file. \n",
" * `mkdir`: create directory/folder, e.g. `mkdir test` will create directory 'test' "
]
}
],
Expand Down

0 comments on commit 1815c07

Please sign in to comment.