UnixTools01: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 34: | Line 34: | ||
* usage of <TAB> when entering file names in bash |
* usage of <TAB> when entering file names in bash |
||
⚫ | |||
* ., .., und andere Dateien di emit . beginnen, z.B. .bash_rc |
|||
* /tmp/../etc/../../bin/../usr |
|||
* ls -la |
|||
* /usr/bin/././.. |
|||
⚫ | |||
* ./a |
|||
[[UnixTools01_04|genauer]] |
[[UnixTools01_04|genauer]] |
||
Line 47: | Line 45: | ||
* mkdir |
* mkdir |
||
* rmdir |
* rmdir |
||
⚫ | |||
[[UnixTools01_05|genauer]] |
|||
Q&E: |
Q&E: |
||
Line 53: | Line 53: | ||
== Using Wildcards to identify files == |
== Using Wildcards to identify files == |
||
⚫ | |||
⚫ | |||
* echo * |
|||
* ls * |
* ls * |
||
* ls *.* |
* ls *.* |
||
Line 60: | Line 62: | ||
* ls *a* |
* ls *a* |
||
* ls /*/bin/a* |
|||
⚫ | |||
* |
* rm /tmp/a* |
||
* ls /tmp/[a-c]* |
|||
[[UnixTools01_06|genauer]] |
|||
== Editor== |
== Editor== |
||
* nano |
* nano |
||
* alternatives: vi, vim, nedit, emacs |
* alternatives: vi, vim, nedit, emacs |
||
[[UnixTools01_07|genauer]] |
|||
⚫ | |||
⚫ | |||
* more |
* more |
||
* wc |
* wc |
||
* grep |
|||
* tail |
* tail |
||
* |
* head |
||
* find |
* find |
||
* Expert Tipp: grep muster $(find / -name patern -print) |
|||
[[UnixTools01_08|genauer]] |
|||
== Redirection - part 1 == |
== Redirection - part 1 == |
Revision as of 23:27, 23 November 2024
Bash 1
login, logout
- Login screen
- Bash-Kommandos
- Logout
- Wer bin ich, und wo?
- id
- who
- hostname
- history
ssh - login on a different computer
- ssh redlich@gruenau.informatik.hu-berlin.de
- hostname -f
- uname -a
Files, Directories, Working Directory
- ls
- pwd
- cd
- ls -l
- Die Verzeichnisse . und ..
Path Names
- a/b/c relativer Path
- /a/b/c absoluter Path
- usage of <TAB> when entering file names in bash
- ~/..
- /tmp/../etc/../../bin/../usr
- /usr/bin/././..
basic shell commands
- cat
- touch
- rm
- mkdir
- rmdir
- mv
Q&E:
- Was passiert, wenn Sie mit rmdir ein Verzeichnis löschen wollen, das nicht leer ist?
Using Wildcards to identify files
- echo Hello World
- echo *
- ls *
- ls *.*
- ls a*
- ls *a
- ls *a*
- ls /*/bin/a*
- rm /tmp/a*
- ls /tmp/[a-c]*
Editor
- nano
- alternatives: vi, vim, nedit, emacs
nore basic tools
- more
- wc
- grep
- tail
- head
- find
- Expert Tipp: grep muster $(find / -name patern -print)
Redirection - part 1
redirecting output of a programm to another file
- ls /bin/a* > file.txt
- ls > /dev/null
append output to a file
- ls /bin/b* >> file.txt
let a programm take its input from a file (redirecting input)
- more < file.txt
- wc < file.txt
let the output of programm be used as input of another progra,
- ls -lisa /bin | more
- ls -lisa /bin | wc
Redirection, Wildcards - part 2
- << END
- ls * 2> /dev/null
- grep 2>&1 | more
- ~/file.txt
- ~redlich/file2.txt
Advanced filenames
- ls [a-c]*
- touch "Good Morning"
- touch '$*()#!'
Q&E:
- Legen Sie eine Datei an, die 'Hello World!" heisst (mit Leerzeichen), und löschen Sie diese Datei anschliessend wieder.
- Löschen Sie im aktuellen Verzeichnis eine Datei, die '--help' heisst
- Legen Sie eine Datei an, die '2*3' heisst
- Versuchen Sie eine Datei anzulegen, die "///A///' heist.
Getting help
- grep --help
Q&E:
- Normalerweise gibt grep alle diejenigen Zeilen der Eingabe aus, die ein angegebenes Muster enthalten. Lesen Sie die Hilfe-Seite des Befehls grep, und finden Sie heraus, wie Sie grep aufrufen müsen, damit alle Zeilen ausgegeben werden, die ein bestimmtes Mustzer NICHT enthalten.