This commit is contained in:
Antranig Vartanian
2023-03-14 16:34:51 +04:00
commit a2d0d3f216
7 changed files with 133 additions and 0 deletions

18
answers/Unix.md Normal file
View File

@ -0,0 +1,18 @@
# Unix Answers
## Single commands
1. `find . -name '*.txt'`
2. `touch empty`
3. `ls -l empty`
4. `id`
5. `date`
## Piping commands together
1. `find . -name '*.txt' > /tmp/txtfiles`
2. `echo 'hello there!' >> empty`
3. `vim empty`
4. `cat empty`
5. `grep -n lo empty`
6. `date | vim -`