Create a bash shell script to sort and then
uniq the file from the command line & store it to a new
file and output the results to the screen. Name this
script "sortAndUniq.sh"
Answer Posted / vipul dalwala
$1 is the filename u are passing from commnadline
i.e. sh sortAndUniq.sh filename.txt
So $1 = filename.txt
All the commnadline parameters passed to the script are get
stored in $1 , $2, $3....
For example : sh sortAndUniq.sh filename1.txt filename2.txt
filename3.txt
Then $1 = filename1.txt , $2 = filename2.txt , $3 =
filename3.txt
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How do I set bash as default shell mac?
What are the types of script?
Explain how you Automate your application using Shell scripting.
Why should we use shell scripts?
I want to create a directory such that anyone in the group can create a file and access any person's file in it but none should be able to delete a file other than the one created by himself.
What does $0 mean in shell script?
What can scripts do?
What is a command line shell?
What is the first line in a shell script?
What is shift command in shell script?
How will you print the login names of all users on a system?
How to find all the files modified in less than 3 days and save the record in a text file?
What is the crontab?
What is path in shell script?
Write down the syntax of "for " loop