Home Work Linux
Home Work Linux
Student2:
Tasks: Open Your browser and connect to the Alpine-linux online terminal using the link
bellow and fill the gaps using the result of the last command. You could use the clear command
(or Ctrl+l) to clear the screen. https://bellard.org/jslinux/vm.html?url=alpine-x86.cfg
-------------------------------------------------------------------------------------------------------------------
localhost:~# ls
localhost:~# pwd
localhost:~# cd master
localhost:~/master# pwd
localhost:~/master# ls
localhost:~/master# ls -a
localhost:~/master# cd .
localhost:~# mkdir codes
localhost:~# ls
localhost:~/master# cd ..
localhost:~# pwd
localhost:~# cat hello.js > master/codes/hello1.js
localhost:~# cat master/codes/hello1.js
localhost:~# ls master/codes/
localhost:~# head -1 readme.txt
localhost:~# tail -1 readme.txt
localhost:~# grep tcc readme.txt
localhost:~# wc -l readme.txt
localhost:~# wc -w master/codes/hello1.c
localhost:~# cp master/codes/* .
localhost:~# ls
# If an error was given by the last command, write the command that will do the desired task: