TCS Unix Assignment 2: Basics of Unix

1. Create a tree structure named ‘training’ in which there are 3 subdirectories – ‘level 1’,’ level2’ and ‘cep’. Each one is again further divided into 3. The ‘level 1’ is divided into ‘sdp’, ‘re’ and ‘se’. From the subdirectory ‘se’ how can one reach the home directory in one step and also how to navigate to the subdirectory ‘sdp’ in one step? Give the commands, which do the above actions?

Answer:

1.To go home directory from se  =   cd ~

Here: cd = change directory, ~  = for home directory.

2.To navigate to subdirectory sdp  = cd training/level1/sdp

 

2. How will you copy a directory structure dir1 to dir2 ? (with all the subdirectories)

Answer: cp –R dir1 dir2

Here: cp = copy,    -R  =copy directories recursively.

 

3. How can you find out if you have the permission to send a message?

Answer:  ls -l

4. Find the space occupied ( in Bytes) by the /home directory including all its subdirectories.

Answer:  du -sb

Here: du  =  outputs the number of kb used by each subdirectory.

-s   =including subdirectory (total)  , -b  = bytes

 

5. What is the command for printing the current time in 24-hour format?

Answer:   date  +%R

Here : %R  = 24 hr format (hr:min)

 

6. What is the command for printing the year, month, and date with a horizontal tab between the fields?

Answer:   date  +%F

Here : %F  = Full date ;%Y-%M-%D

7. Create the following files: chapa, chapb, chapc, chapd, chape, chapA, chapB, chapC, chapD, chapE, chap01, chap02, chap03, chap04, chap05, chap11, chap12, chap13, chap14, and chap15.

Answer:

Cat > chapa Contents of file Ctrl+D           Cat > chapb Contents of file Ctrl+D

Cat > chapc Contents of file Ctrl+D           Cat > chapd Contents of file Ctrl+D

Cat > chape Contents of file Ctrl+D           Cat > chapA Contents of file Ctrl+D

Cat > chapB Contents of file Ctrl+D           Cat > chapC Contents of file Ctrl+D

Cat > chapD Contents of file Ctrl+D           Cat > chapE Contents of file Ctrl+D

Cat > chap01 Contents of file Ctrl+D           Cat > chap02 Contents of file Ctrl+D

Cat > chap03 Contents of file Ctrl+D           Cat > chap04 Contents of file Ctrl+D

Cat > chap05 Contents of file Ctrl+D           Cat > chap11 Contents of file Ctrl+D

Cat > chap12 Contents of file Ctrl+D           Cat > chap13 Contents of file Ctrl+D

Cat > chap14 Contents of file Ctrl+D           Cat > chap15 Contents of file Ctrl+D

 

Here: cat  =    to concatenate a file.

>    =    to redirect the output

8. With reference to question 7, What is the command for listing all files ending in small letters?

Answer:   find  . –name “*[a-z].*”

9. With reference to question 7, What is the command for listing all files ending in capitals?

Answer:   find . –name “*[A-Z].*”

10. With reference to question 7, What is the command for listing all files whose last but one character is 0?

Answer:   find . –name “*0?.*”

Here: ? = wildcard(will match exactly one character.)

11. With reference to question 7, What is the command for listing all files which end in small letters but not ‘a’ and ‘c’?

Answer:    find . –name “*[b d-z].*”

 

12. In an organisation one wants to know how many programmers are there. The employee data is stored in a file called ‘personnel’ with one record per employee. Every record has field for designation. How can grep be used for this purpose?

Answer:   $ grep -c programmer personnel

Here: -c = count

13. In the organisation mentioned in question 12 how can sed be used to print only the records of all employees who are programmers.

Answer:   $ sed -n “/programmer/p” personnel

Here: sed =stream editor

/ /p   =for printing pattern space

14. In the organisation mentioned in question 12 how can sed be used to change the designation ‘programmer’ to ‘software professional’ every where in the ‘personnel’ file

Answer:   $ sed -e “s/programmer/software professional/” personnel

Here: sed =stream editor

-e  = script

s/regexp/replacement     =for replacement

 

 

15. Find out about the sleep command and start five jobs in the background, each one sleeping for 10 minutes.

Answer:   $ sleep 10 & sleep 10 & sleep 10 & sleep 10 & sleep 10 &

 

16. How do you get the status of all the processes running on the system? i.e. using what option?

Answer:   $ ps –e

Here:ps= displays information about the selection of active processes.

-e  = select all processes.

TCS Unix Assignment1 :Basics of Unix

Question 1:
Write a command to list all the files inside a folder i.e. if there is a folder inside a folder then it should list all files inside the sub-folder which is inside the folder to be listed.
Answer: ls -aR
Ls =list information about files.
-a –all (hidden files also), -R –recursive (list subdirectories)

Question 2:
Search all the files which contains a particular string, say “include” within a folder.
Answer: grep include ./*
Grep = searches the named input file for lines containing a match to the given pattern.
./* = In current directory (.), all files(*)

Question 3:
Rename all the files within a folder with suffix “Unix_” i.e. suppose a folder has two files a.txt and b.pdf than they both should be renamed from a single command to Unix_a.txt and Unix_b.pdf
Answer: for i in *.*;do mv “$i” Unix_”$i”;done;
Loop:
Syntax for variable in no of times;
Do command;
….;
Done;

Here: i= *.* (for all files)
$= to read value of variable.
do mv “$i” Unix_”$i” = rename *.* as Unix_*.*

Question 4:
Rename all files within a folder with the first word of their content(remember all the files should be text files. For example if a.txt contains “Unix is an OS” in its first line then a.txt should be renamed to Unix.txt
Answer: for i in *.txt; do head -1 “$i” > ad.txt ; x=”$(cut -d ‘ ‘ -f1 ad.txt)”; mv “$i” “$x.txt”; done;
Here:
i = *.txt (all text files);
do head -1 “$i” > ad.txt; = prints first line and store in ad.txt file.
x=”$(cut -d ‘ ‘ -f1 ad.txt)” ; = removes first column (field) delimited by space from ad.txt file stores in x.
mv “$i” “$x.txt”; = rename *.txt as value of x .txt.

Question 5:
Suppose you have a C project in a folder called “project”, it contains .c and .h files, it also contains some other .txt files and .pdf files. Write a Linux command that will count the number of lines of your text files. That means total line count of every file. (remember you have to count the lines in .txt files only)
Answer: wc –l *.txt
Here: wc =word count
-l =to count lines
*.txt =all text files

Question 6 :
Rename all files which contain the sub-string ‘foo’, replacing it with ‘bar’ within a given folder.
Answer: for i in ./*foo*;do mv “$i” “${i/foo/bar}”;done

Question 7:
Show the most commonly used commands from “history”. [hint: remember the history command, use cut, and sort it.
Answer:history|sort|cut -d ‘ ‘ -f1

Follow

Get every new post delivered to your Inbox.