Odpowiedź :
Odpowiedź:
1. ls -a ~
2. ls -l ~
3. clear albo Ctrl+L
4. mkdir class_name
5. cd class_name && touch poniedziałek && touch wtorek && cat > plik1.txt && cat > plik2.txt && cat > plik3.txt && touch środa
Wyjaśnienie:
1. --all
2. long list format
3. self-explanatory
4. mkdir makes a directory in linux
5. touch makes an empty file, cat writes to a file, in this case an empty text file; you can also use touch to make an empty text file like "touch plik1.txt" or "> plik1.txt"