In this lab we are going to practice with bash
, a shell and command-line language!
-
Fork the repo in your git hub account and then clone the folder "lab-bash" to your machine and navigate to it folder.
-
Check the contents of the folder using the "ls" command
$ ls
and you should see the following:
exercises inputs lorem lorem-copy modules outputs README.md
- Stay in the same directory/folder and complete the following exercises.
- Using the echo command print in console "Hello World". Here is some info about echo command [https://discuss.codecademy.com/t/what-are-practical-uses-of-the-echo-command/394788]
- Create a new directory called
new_dir
. - Delete/Remove the directory
new_dir
. - Copy the file
sed.txt
from thelorem
folder and paste it to the folderlorem-copy
folder. - Copy the other two files from the
lorem folder
tolorem-copy
folder in just one line using semicolon;
. - Show the
sed.txt
file content from thelorem
folder. - Show the
at.txt
file andlorem.txt
file contents fromlorem
folder. - Print the first 3 rows in
sed.txt
file from lorem-copy folder. - Print the last 3 rows in
sed.txt
file from lorem-copy folder. - Add
Homo homini lupus.
at the end ofsed.txt
file in thelorem-copy
folder. - Print the last 3 rows in
sed.txt
file fromlorem-copy
folder. You should seeHomo homini lupus.
. sed
command is used to replace the text in a file. Use thesed
command to replace all occurances ofet
withET
in the fileat.txt
file present in the folderlorem
. You can use the following link to refer tosed
commands [https://www.linode.com/docs/guides/manipulate-text-from-the-command-line-with-sed/] Check the contents of the sed.txt file usingcat
command.- Find who is the system user.
- Find the current path of the directory you are in.
- List all files with the extension
.txt
in lorem folder. - Count the rows in
sed.txt
file from lorem folder. Look concatenatecat
andwc
with the pipe|
. - Count the files which start with
lorem
in all directories.
- Store your
name
in a variable withread
command. - Print that variable.
- Create a new directory named with variable
name
. - Remove that directory.