SlideShare a Scribd company logo
1 of 17
Download to read offline
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 1/17
The Best Unix Shell Scripting Interview
Questions 2018 - Learn Now!
mindmajix.com (https://mindmajix.com/unix-shell-scripting-interview-questions)
Unix Shell Scripting Interview Questions
(4.0)
Email This Post
If you're looking for Unix Shell Scripting Interview Questions for Experienced or
Freshers, you are at right place. There are lot of opportunities from many
reputed companies in the world. According to research Unix Shell Scripting has a
market share of about 17%. So, You still have opportunity to move ahead in your
career in Unix Shell Scripting. Mindmajix offers Advanced Unix Shell Scripting
Interview Questions 2018 that helps you in cracking your interview & acquire
dream career as Unix Shell Scripting Developer.
Are you interested in taking up for Unix Shell Scripting Certification Training?
Enroll Now Unix Shell Scripting Training! (https://mindmajix.com/unix-
shell-scripting-training)
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 2/17
C Shell – Beginner
Q. What must you do before you are able to run your new script for the
first time by its name or with an alias?
You must make it executable, that is to execute the command:
chmod +x scriptname
Q. The following command is included in the .login script of a user:
alias whois ´grep !ˆ /etc/passwd´
What will be the output, when the user issues the following?
who is guru
If there is a defined user account named “guru”, or the string guru is contained
elsewhere in /etc/passwd file, then the output will be the entry which contains
the string “guru”, otherwise, it will be an empty line.
Q. If the condition If ( -r filename ) fails (returns false), what are the
possible reasons?
The possible reasons are:
a) filename is not readable by the owner of the process
b) filename does not exist
Q. Which is the difference between the next two statements?
set var = 99
@ var = 99
Using the typical assignment form (set …), the value assigned in var is the string
99. Using the @, the value is the integer 99.
Q. Given the code snippet:
@ n = 5
while ($n)
# actions
…
end
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 3/17
What actions should be performed inside the loop, in order to get out of
this loop?
Any command that changes the value of variable n, for it to become 0 sometime.
E.g., @ n—
Q. What will the output of the following commands be? Explain.
set names = (Kathrin Chris Jacob)
shift names
echo $#names
The output will be 2.
shift command gets rid of the first element of the array names. So, the echo
command will display 2 as the number of elements of the array.
Q. What does the command rehash do?
rehash recomputes the internal hash table for the PATH variable. If the new
command resides in a directory not listed in PATH, add this directory to PATH,
and then use rehash.
Q. How could you ensure that a script will be run in csh?
The first line of the script could be used to define the shell you want to use, as
follows:
#!/bin/csh
This is sufficient to run the script in csh.
Q. Given that script1 is an executable C shell script situated in directory
/home/myhomedir/project1/data/dir1, use three ways to run it, explaining the
pros and cons.
a) cd/home/myhomedir/project1/data/dir1/script1 (You should first cd to the
directory path)
b) /home/myhomedir/project1/data/dir1/script1 (You should include the
absolute directory path)
c) script1 (shortest form, but it works only if the directory path is added to the
PATH environment variable of the user)
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 4/17
Q. What will be the value of the sixrem variable, after executing this
command?
@ sixrem = $data[2] % 6
The expression divides the value of second element of the data array by 6 and
assigns the remainder of the division to the sixrem variable.
Q. Name two ways to obtain the length of a string, giving a simple
example for each one.
The two ways to obtain the length of a string are:
a) Using the wc command:
set string = “any string”
@ ln = `echo $string | wc -c` -1
b) Using the awk function length:
set string = “any string”
set ln = `echo $string | awk ‘{print length($0)}’`
Q. Create a script that displays a list of regular files from the current
directory.
#!/bin/csh -f
foreach i (*)
if ( -f $i ) then
print $i
endif
end
Q. Describe in short the word completion feature of the tcsh shell.
Completion works anywhere in the command line, not at just the end, for both
commands and filenames. Type part of a word and hit the Tab key, and the shell
replaces the incomplete word with the complete one in the input buffer. The
completion also adds a “/” to the end of completed directories and a space to the
end of other words. The shell parses the buffer to determine whether the word
you try to complete should be completed as a command, filename or variable.
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 5/17
The first word in the buffer and the first word following ‘;’, ‘|’, ‘|&’, ‘&&’ or ‘||’ is
considered to be a command. A word beginning with ‘$’ is considered to be a
variable. Anything else is a filename. An empty line is ‘completed’ as a filename.
Q. In tcsh, how are the remaining choices (if any) listed whenever the
word completion fails?
The remaining choices (if any), are listed only if the shell variable autolist is set.
Q. In tcsh, how do you disable filename substitution?
noglob shell variable can be set to disable the filename substitution feature.
Q. Compare the sched tcsh built-in command with the UNIX/Linux at
command.
These commands are similar but not the same. sched command runs directly
from the shell, so it has access to shell variables and settings at command can
run a scheduled command at exactly the specified time.
Q. Schedule a prompt change at 10:55 as a reminder for an oncoming
event.
sched 10:55 set prompt = ‘It’s time for the important meeting: >’
Q. What is the impact of -f option in the first line of a csh script?
(#!/bin/csh
versus
#!/bin/csh -f)
Using option -f, the shell does not load any resource or startup files (.cshrc for a
script), or perform any command hashing, and thus starts faster.
Q. How can you start a job in the background, and then terminate your
login session, without terminating the background job?
We can start a job in the background and then terminate our login session,
without terminating the background job using “no hangup” command, nohup:
nohup command > output_file &
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 6/17
Q. Which is the difference between
echo c{1,4,2,5,1}
and
echo [c]{1,4,2,5,1}?
The first echo will display c1 c4 c2 c5 c1, while the second displays only c1.
Q. Display the first and last arguments of a script, regardless of the
number of arguments, and without a loop.
my_var3 = $#argv
echomy_var1: $argv[$1]
echomy_last_var: $argv[$my_var3]
Q. How will you set the ‘search path’ in csv?
Search path in csv can be set as follows:
a) setenv PATH “/myfolder1 /bin: /myfolder2 /myfile3”
b) using list
set path = ( /myfolder1 /bin /myfolder2 /myfile3 )
Q. Create a tar archive into /home/user1/myarch.tar, including all files
ending in .c, .h, .l, .y,.o and .cc and also the Makefile from two
directories, ~/dir1 and ~/dir2.
tar cvf /home/user1/myarch.tar ~/{dir1,dir2}/{Makefile,*.{c,h,l,o,y,cc}}
or
tar cvf /home/user1/myarch.tar ~/dir1/Makefile ~/dir1/*.[chloy] ~/dir1/*.cc
~/dir2/Makefile ~/dir2/*.[chloy] ~/dir2/*.cc
Q. Your script must be executed with exactly two arguments, otherwise
would be terminated. Write a code to implement these checks.
if ($#argv <> 2) then
echo “Usage: $0 arg1 arg2”
echo “You must give exactly two parameters”
exit 20
endif
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 7/17
Q. Write a pipeline that reads from the j-th line up to the k-th line of a text
file, without using awk.
set total = `cat textfile | wc -l`
set j = 10
set k = 18
@ count = $k – $j
head -$k textfile | tail -$count
C Shell – Intermediate
Q. Explain the following commands:
set names = (John Kathrin Chris Jacob)
set names = ($names[1-2] Angela $names[3-])
First command creates an array named names with the four names as its
elements.
Second command adds name Angela between Kathrin and Chris.
Q. How could you move cursor to specified coordinates on screen? (tcsh)
We can move the cursor to specified coordinates on the screen using echotc cm
column row
Q. What is the result of this loop?
foreach i ([A-Z]*) ? mv $i $i.csh ? end
The loop renames all files that begin with a capital letter, adding the “extension”
.csh.
Q. Assuming there is a label cleanup somewhere in a script, explain the
command onintr cleanup
The script will branch to label cleanup if it catches an interrupt signal.
Q. Is there a way to repeat a command for a predefined number of times,
without using a counter-controlled loop?
We can repeat a command for a predefined number of times, without using a
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 8/17
counter-controlled loop using the repeat command, e.g.,
repeat 5 ls >> listings
Q. csh and tcsh both support the filename & command completion
feature. But the feature works differently in csh than in tcsh. Name the
differences.
tcsh automatically completes filenames and commands when the Tab key is hit.
csh does so only when the filec variable is set, after the Esc key is hit.
Q. Name the special login files for csh&tcsh in the order used by each
shell.
If the command is executed from the (“/etc/csh.cshrc& /etc/csh.login”) system
files, the login shell will be started.
a) It will run the commands given in the files present in the home directory of the
user.~/.cshrc or ~/.tcshrc:During shell startup, it gets executed for each instance
of the shell. If ~/.cshrcs present, ‘tcsh’ uses this file else executes ‘~/.tcshrc’
b) ~/.login: at login it is executed after .cshrcby login shell
c) ~/.cshdirs: After .login (tcsh), it is executed by login shell
Q. What do the following lines do? Explain the differences.
ls > filename
ls >! Filename
In both forms, the output of ls command is redirected to filename. If filename
does not exist, it will be created, otherwise it will be truncated. When the first
form is used, if shell parameter noclobber is set and filename is an existing file,
an error results. The ‘!’ in the second form is used to suppress that check.
Q. You can run a script by its name, using an alias or using source.
Explain the differences in using each of the three methods. When is it
suitable to use each method?
A script executed by name is not run in current process (a child process is created
to run the script), so this method is suitable to be used only if the environment
variables and globally defined aliases (in $HOME/.cshrc) should be known to
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 9/17
the script.
The method that executes a script using an alias is a variant of executing the
script by name. In addition, if the alias is defined from shell prompt, it applies
only to the current process. To make the alias global, you must define it in
$HOME/.cshrc, but be careful to keep the number of aliases included there to a
relatively small number.
With the third method, the script runs in the current process, thus, any aliases
defined in the current process will be known to your script.
Q. How could you override a defined alias? Give a simple example.
To override an alias, precede the alias with backslash. Fox example, if you have
an alias named rm which runs a custom script, if you want to run the command
rm instead of the rm alias, you can do it as shown below:
rm filename
Q. You plan to write a script that will process the file passed to it as the
only argument on the command line. So, your script must accept at least
one argument and this single or first argument must be an existing file.
Write the necessary checks, displaying the appropriate messages.
#!/bin/csh
if ( $#argv == 0 ) then
echo Error: A file name must be supplied as argument
exit 10
else if ( ! -e $1 ) then
echo Error: $1 is not an existing file
exit 11
endif
commands to process the file
Q. Write a code excerpt that processes (here, just displays) the elements
of an array, from the first one to the last one.
set myarray = (value1, value2, value3, value4, value5)
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 10/17
set i = 1
while ( $#myarray > 0 )
echo “$i array’s element is: $myarray[1]”
shift myarray
@ i++
end
or,
set myarray = (value1, value2, value3, value4, value5)
set i = 1
foreach val ( $myarray[*] )
echo “$i array’s element is: $val”
@ i++
End
Q. Complete the last echo command with a descriptive message in the
following script. In other words, explain the value of pct variable.
#!/bin/csh
set duout = (`du -sk ~`)
@ dir_size = $duout[1]
set dfout = (`df -k | grep /home`)
@ home_size = $dfout[2]
@ pct = $dir_size * 100 / $home_size
echo “… $pct …”
echo “Your home directory takes $pct % of /home filesystem”
Q. Extract just the mode of a given file, using two different ways.
The mode of a given file can be extracted in the following ways:
a) set file_mode = `ls -l filename | tail -1 | cut -f1 -d” ” | cut -c2-`
b) set file_mode = `ls -l filename | awk ‘ /^-/ {print substr($1,2)}’`
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 11/17
Q. Which is the output of the following excerpt?
netstat -an | awk ‘/SHED/ {split($4,c,”.”); print “Connection to ” c[4] ”
from ” $5}’ | sort -nt” ” -k 3
Lines in the format “Connection to port_number from IP_Address”, for each
established connection, sorted by port_number.
Q. Find the position of a substring in a given string. Display a message if
the string does not contain this substring.
set string = “any string”
set sub = “str”
set pos = ` echo $string | awk -v s=$sub ‘{print index($0,s)}’`
if ( $pos == 0 ) then
echo “$string does not contain the substring $sub”
else
echo “$sub first occurrence in $string starts in position $pos”
endif
Q. Change the case of a string.
set string = “C Shell Programming”
set ustring = `echo $string | awk ‘{print toupper($0)}’` # = “C SHELL
PROGRAMMING”
set lstring = `echo $string | awk ‘{print tolower($0)}’` # = “c shell programming”
Q. Assume that in a script the value of a variable limt becomes equal to
92.1. Display the message:
Upper limit 92.10% in your_system
set system = `hostname`
printf “Upper limit %f.2%% in the %s” $limt $system
Q. Suppose a script contains the following snippet:
set fl = /home/dbuser5/reports/fs_report1.txt
echo $fl:e
echo $fl:r
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 12/17
echo $fl:t
echo $fl:h
What do you expect to be displayed?
txt
fs_report1
fs_report1.txt
/home/dbuser5/reports
Q. Create a script that converts the filenames from current directory to
lower case letters.
#!/bin/csh -f
foreachmy_old_file1 (`ls`)
setmy_new_ file1 = `echo $my_old_file1 | tr ´[A-Z]´ ´[a-z]´`
if (“$my_new_ file1” == “$my_old_file1”) then
continue
endif
mv $ my_old_file1 $my_new_ file1
end
Q. Name some basic differences between csh and tcsh.
tcsh includes a command-line editor, file name and command completion
features, and enhanced job control, in comparison with the Berkeley csh.
Q. Compare the tcsh shell variables correct and autocorrect.
autocorrect can be set to correct the word to be completed before any
completion attempt. correct can be set to ‘cmd’ to correct command names or to
‘all’ to correct the entire line, each time return is hit.
Q. What is the purpose of the special alias shell?
The shell special alias can be set to specify an interpreter other than the shell
itself.
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 13/17
Q. Which is the method to bind the keys to the standard vi or emacs
bindings?
Shell’s built-in command is bindkey. Its -e option binds all keys to standard
emacs bindings, while -v option binds to standard vi bindings.
Q. Which is the purpose of shell’s variable color?
Shell’s variable color, if set, enables color display for the built in ls-F and it passes
–color=auto to ls.
Q. Set your prompt to display username@hostname: pwd>
It can be done as follows:
set prompt = “%n@%m: %/ >”
Q. How can you start (from shell prompt) 2 commands “in the
background”, ensuring that the second command will start after the
completion of the first one?
It can be done as follows:
(command 1 ; command 2) &
Check Out Unix Shell Scripting Tutorials (https://mindmajix.com/unix-shell)
Explore Unix Shell Scripting Sample Resumes! Download & Edit, Get Noticed by
Top Employers!Download Now! (https://mindmajix.com/unix-shell-
scripting-sample-resumes)
Social Share
Previous (https://mindmajix.com/ui-developer-interview-questions)
Next (https://mindmajix.com/vb-net-interview-questions)
Popular Courses in 2018
Salesforce Training (https://mindmajix.com/salesforce-
training)
(5.0)
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 14/17
2245 Enrolled
Selenium Training (https://mindmajix.com/selenium-
training)
(5.0)
3370 Enrolled
Splunk Training (https://mindmajix.com/splunk-training)
(5.0)
1256 Enrolled
Python Training (https://mindmajix.com/python-training)
(5.0)
1351 Enrolled
DevOps Training (https://mindmajix.com/devops-training)
(5.0)
2895 Enrolled
RPA Training (https://mindmajix.com/rpa-training)
(5.0)
4025 Enrolled
OpenStack Training (https://mindmajix.com/openstack-
training)
(5.0)
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 15/17
945 Enrolled
Data Science Training (https://mindmajix.com/data-
science-training)
(5.0)
1578 Enrolled
Microsoft Azure Training
(https://mindmajix.com/microsoft-azure-training)
(5.0)
1956 Enrolled
MongoDB Training (https://mindmajix.com/mongodb-
training)
(5.0)
1220 Enrolled
Hadoop Training (https://mindmajix.com/hadoop-
training)
(5.0)
1090 Enrolled
Cognos Training (https://mindmajix.com/cognos-training)
(5.0)
3012 Enrolled
JENKINS Training (https://mindmajix.com/jenkins-
training)
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 16/17
(4.0)
880 Enrolled
SAS Training (https://mindmajix.com/sas-training)
(5.0)
1890 Enrolled
VMware Training (https://mindmajix.com/vmware-
training)
(5.0)
3250 Enrolled
AngularJS Training (https://mindmajix.com/angularjs-
training)
(5.0)
3756 Enrolled
Salesforce Lightning Training
(https://mindmajix.com/salesforce-lightning-training)
(5.0)
1458 Enrolled
Automation Anywhere Training
(https://mindmajix.com/automation-anywhere-training)
(5.0)
3780 Enrolled
4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now!
https://www.instapaper.com/read/1037948618 17/17
Machine Learning Training
(https://mindmajix.com/machine-learning-training)
(5.0)
985 Enrolled
Artificial Intelligence (AI) Training
(https://mindmajix.com/artificial-intelligence-training)
(5.0)
75 Enrolled
mindmajix.com (https://mindmajix.com/unix-shell-scripting-interview-questions)

More Related Content

What's hot

Python programing
Python programingPython programing
Python programinghamzagame
 
C faqs interview questions placement paper 2013
C faqs interview questions placement paper 2013C faqs interview questions placement paper 2013
C faqs interview questions placement paper 2013srikanthreddy004
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to pythonMarian Marinov
 
Антон Бикинеев, Reflection in C++Next
Антон Бикинеев,  Reflection in C++NextАнтон Бикинеев,  Reflection in C++Next
Антон Бикинеев, Reflection in C++NextSergey Platonov
 
함수형사고 4장 열심히보다는현명하게
함수형사고 4장 열심히보다는현명하게함수형사고 4장 열심히보다는현명하게
함수형사고 4장 열심히보다는현명하게박 민규
 
CBSE Question Paper Computer Science with C++ 2011
CBSE Question Paper Computer Science with C++ 2011CBSE Question Paper Computer Science with C++ 2011
CBSE Question Paper Computer Science with C++ 2011Deepak Singh
 
Java Keeps Throttling Up!
Java Keeps Throttling Up!Java Keeps Throttling Up!
Java Keeps Throttling Up!José Paumard
 
Reasonable Code With Fsharp
Reasonable Code With FsharpReasonable Code With Fsharp
Reasonable Code With FsharpMichael Falanga
 
Algorithm2e package for Latex
Algorithm2e package for LatexAlgorithm2e package for Latex
Algorithm2e package for LatexChris Lee
 
Refactoring
RefactoringRefactoring
Refactoringnkaluva
 
C++20 the small things - Timur Doumler
C++20 the small things - Timur DoumlerC++20 the small things - Timur Doumler
C++20 the small things - Timur Doumlercorehard_by
 
Control structuresin c
Control structuresin cControl structuresin c
Control structuresin cVikash Dhal
 
Docase notation for Haskell
Docase notation for HaskellDocase notation for Haskell
Docase notation for HaskellTomas Petricek
 

What's hot (20)

Python programing
Python programingPython programing
Python programing
 
C++ programming
C++ programmingC++ programming
C++ programming
 
C faqs interview questions placement paper 2013
C faqs interview questions placement paper 2013C faqs interview questions placement paper 2013
C faqs interview questions placement paper 2013
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
 
Антон Бикинеев, Reflection in C++Next
Антон Бикинеев,  Reflection in C++NextАнтон Бикинеев,  Reflection in C++Next
Антон Бикинеев, Reflection in C++Next
 
Tiramisu概要
Tiramisu概要Tiramisu概要
Tiramisu概要
 
함수형사고 4장 열심히보다는현명하게
함수형사고 4장 열심히보다는현명하게함수형사고 4장 열심히보다는현명하게
함수형사고 4장 열심히보다는현명하게
 
Python Programming Essentials - M8 - String Methods
Python Programming Essentials - M8 - String MethodsPython Programming Essentials - M8 - String Methods
Python Programming Essentials - M8 - String Methods
 
Rust Intro
Rust IntroRust Intro
Rust Intro
 
CBSE Question Paper Computer Science with C++ 2011
CBSE Question Paper Computer Science with C++ 2011CBSE Question Paper Computer Science with C++ 2011
CBSE Question Paper Computer Science with C++ 2011
 
Java Keeps Throttling Up!
Java Keeps Throttling Up!Java Keeps Throttling Up!
Java Keeps Throttling Up!
 
Python
PythonPython
Python
 
Operating System Engineering
Operating System EngineeringOperating System Engineering
Operating System Engineering
 
Reasonable Code With Fsharp
Reasonable Code With FsharpReasonable Code With Fsharp
Reasonable Code With Fsharp
 
Algorithm2e package for Latex
Algorithm2e package for LatexAlgorithm2e package for Latex
Algorithm2e package for Latex
 
Refactoring
RefactoringRefactoring
Refactoring
 
C++20 the small things - Timur Doumler
C++20 the small things - Timur DoumlerC++20 the small things - Timur Doumler
C++20 the small things - Timur Doumler
 
Control structuresin c
Control structuresin cControl structuresin c
Control structuresin c
 
Ken thompson
Ken thompsonKen thompson
Ken thompson
 
Docase notation for Haskell
Docase notation for HaskellDocase notation for Haskell
Docase notation for Haskell
 

Similar to The best unix shell scripting interview questions 2018 learn now!

Quize on scripting shell
Quize on scripting shellQuize on scripting shell
Quize on scripting shelllebse123
 
C programming language tutorial
C programming language tutorial C programming language tutorial
C programming language tutorial javaTpoint s
 
C Programming Language Tutorial for beginners - JavaTpoint
C Programming Language Tutorial for beginners - JavaTpointC Programming Language Tutorial for beginners - JavaTpoint
C Programming Language Tutorial for beginners - JavaTpointJavaTpoint.Com
 
CSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docxCSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docxmydrynan
 
Bozorgmeh os lab
Bozorgmeh os labBozorgmeh os lab
Bozorgmeh os labFS Karimi
 
Unix Shell Scripting Tutorial | Unix Shell Scripting Online Training
Unix Shell Scripting Tutorial | Unix Shell Scripting Online TrainingUnix Shell Scripting Tutorial | Unix Shell Scripting Online Training
Unix Shell Scripting Tutorial | Unix Shell Scripting Online TrainingVyshnavi Reddy
 
Shell Scripting and Programming.pptx
Shell Scripting and Programming.pptxShell Scripting and Programming.pptx
Shell Scripting and Programming.pptxHarsha Patel
 
Shell Scripting and Programming.pptx
Shell Scripting and Programming.pptxShell Scripting and Programming.pptx
Shell Scripting and Programming.pptxHarsha Patel
 
BACKGROUND A shell provides a command-line interface for users. I.docx
BACKGROUND A shell provides a command-line interface for users. I.docxBACKGROUND A shell provides a command-line interface for users. I.docx
BACKGROUND A shell provides a command-line interface for users. I.docxwilcockiris
 
Introduction to c
Introduction to cIntroduction to c
Introduction to camol_chavan
 
The Korn Shell is the UNIX shell (command execution program, often c.docx
The Korn Shell is the UNIX shell (command execution program, often c.docxThe Korn Shell is the UNIX shell (command execution program, often c.docx
The Korn Shell is the UNIX shell (command execution program, often c.docxSUBHI7
 
Say whether each of the following statements is true (“T”) or false .pdf
Say whether each of the following statements is true (“T”) or false .pdfSay whether each of the following statements is true (“T”) or false .pdf
Say whether each of the following statements is true (“T”) or false .pdfRBMADU
 

Similar to The best unix shell scripting interview questions 2018 learn now! (20)

Shell programming
Shell programmingShell programming
Shell programming
 
Quize on scripting shell
Quize on scripting shellQuize on scripting shell
Quize on scripting shell
 
C programming language tutorial
C programming language tutorial C programming language tutorial
C programming language tutorial
 
C Programming Language Tutorial for beginners - JavaTpoint
C Programming Language Tutorial for beginners - JavaTpointC Programming Language Tutorial for beginners - JavaTpoint
C Programming Language Tutorial for beginners - JavaTpoint
 
Shell scripting
Shell scriptingShell scripting
Shell scripting
 
Unix
UnixUnix
Unix
 
CSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docxCSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docx
 
Shell Scripting
Shell ScriptingShell Scripting
Shell Scripting
 
Bozorgmeh os lab
Bozorgmeh os labBozorgmeh os lab
Bozorgmeh os lab
 
Unix Shell Scripting Tutorial | Unix Shell Scripting Online Training
Unix Shell Scripting Tutorial | Unix Shell Scripting Online TrainingUnix Shell Scripting Tutorial | Unix Shell Scripting Online Training
Unix Shell Scripting Tutorial | Unix Shell Scripting Online Training
 
Shell Scripting and Programming.pptx
Shell Scripting and Programming.pptxShell Scripting and Programming.pptx
Shell Scripting and Programming.pptx
 
Shell Scripting and Programming.pptx
Shell Scripting and Programming.pptxShell Scripting and Programming.pptx
Shell Scripting and Programming.pptx
 
Slides
SlidesSlides
Slides
 
BACKGROUND A shell provides a command-line interface for users. I.docx
BACKGROUND A shell provides a command-line interface for users. I.docxBACKGROUND A shell provides a command-line interface for users. I.docx
BACKGROUND A shell provides a command-line interface for users. I.docx
 
Introduction to c
Introduction to cIntroduction to c
Introduction to c
 
The Korn Shell is the UNIX shell (command execution program, often c.docx
The Korn Shell is the UNIX shell (command execution program, often c.docxThe Korn Shell is the UNIX shell (command execution program, often c.docx
The Korn Shell is the UNIX shell (command execution program, often c.docx
 
Shell Script Tutorial
Shell Script TutorialShell Script Tutorial
Shell Script Tutorial
 
Lab4 scripts
Lab4 scriptsLab4 scripts
Lab4 scripts
 
Say whether each of the following statements is true (“T”) or false .pdf
Say whether each of the following statements is true (“T”) or false .pdfSay whether each of the following statements is true (“T”) or false .pdf
Say whether each of the following statements is true (“T”) or false .pdf
 
Chap06
Chap06Chap06
Chap06
 

Recently uploaded

UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxJisc
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfDr Vijay Vishwakarma
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jisc
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Pooja Bhuva
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 

Recently uploaded (20)

UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 

The best unix shell scripting interview questions 2018 learn now!

  • 1. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 1/17 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! mindmajix.com (https://mindmajix.com/unix-shell-scripting-interview-questions) Unix Shell Scripting Interview Questions (4.0) Email This Post If you're looking for Unix Shell Scripting Interview Questions for Experienced or Freshers, you are at right place. There are lot of opportunities from many reputed companies in the world. According to research Unix Shell Scripting has a market share of about 17%. So, You still have opportunity to move ahead in your career in Unix Shell Scripting. Mindmajix offers Advanced Unix Shell Scripting Interview Questions 2018 that helps you in cracking your interview & acquire dream career as Unix Shell Scripting Developer. Are you interested in taking up for Unix Shell Scripting Certification Training? Enroll Now Unix Shell Scripting Training! (https://mindmajix.com/unix- shell-scripting-training)
  • 2. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 2/17 C Shell – Beginner Q. What must you do before you are able to run your new script for the first time by its name or with an alias? You must make it executable, that is to execute the command: chmod +x scriptname Q. The following command is included in the .login script of a user: alias whois ´grep !ˆ /etc/passwd´ What will be the output, when the user issues the following? who is guru If there is a defined user account named “guru”, or the string guru is contained elsewhere in /etc/passwd file, then the output will be the entry which contains the string “guru”, otherwise, it will be an empty line. Q. If the condition If ( -r filename ) fails (returns false), what are the possible reasons? The possible reasons are: a) filename is not readable by the owner of the process b) filename does not exist Q. Which is the difference between the next two statements? set var = 99 @ var = 99 Using the typical assignment form (set …), the value assigned in var is the string 99. Using the @, the value is the integer 99. Q. Given the code snippet: @ n = 5 while ($n) # actions … end
  • 3. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 3/17 What actions should be performed inside the loop, in order to get out of this loop? Any command that changes the value of variable n, for it to become 0 sometime. E.g., @ n— Q. What will the output of the following commands be? Explain. set names = (Kathrin Chris Jacob) shift names echo $#names The output will be 2. shift command gets rid of the first element of the array names. So, the echo command will display 2 as the number of elements of the array. Q. What does the command rehash do? rehash recomputes the internal hash table for the PATH variable. If the new command resides in a directory not listed in PATH, add this directory to PATH, and then use rehash. Q. How could you ensure that a script will be run in csh? The first line of the script could be used to define the shell you want to use, as follows: #!/bin/csh This is sufficient to run the script in csh. Q. Given that script1 is an executable C shell script situated in directory /home/myhomedir/project1/data/dir1, use three ways to run it, explaining the pros and cons. a) cd/home/myhomedir/project1/data/dir1/script1 (You should first cd to the directory path) b) /home/myhomedir/project1/data/dir1/script1 (You should include the absolute directory path) c) script1 (shortest form, but it works only if the directory path is added to the PATH environment variable of the user)
  • 4. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 4/17 Q. What will be the value of the sixrem variable, after executing this command? @ sixrem = $data[2] % 6 The expression divides the value of second element of the data array by 6 and assigns the remainder of the division to the sixrem variable. Q. Name two ways to obtain the length of a string, giving a simple example for each one. The two ways to obtain the length of a string are: a) Using the wc command: set string = “any string” @ ln = `echo $string | wc -c` -1 b) Using the awk function length: set string = “any string” set ln = `echo $string | awk ‘{print length($0)}’` Q. Create a script that displays a list of regular files from the current directory. #!/bin/csh -f foreach i (*) if ( -f $i ) then print $i endif end Q. Describe in short the word completion feature of the tcsh shell. Completion works anywhere in the command line, not at just the end, for both commands and filenames. Type part of a word and hit the Tab key, and the shell replaces the incomplete word with the complete one in the input buffer. The completion also adds a “/” to the end of completed directories and a space to the end of other words. The shell parses the buffer to determine whether the word you try to complete should be completed as a command, filename or variable.
  • 5. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 5/17 The first word in the buffer and the first word following ‘;’, ‘|’, ‘|&’, ‘&&’ or ‘||’ is considered to be a command. A word beginning with ‘$’ is considered to be a variable. Anything else is a filename. An empty line is ‘completed’ as a filename. Q. In tcsh, how are the remaining choices (if any) listed whenever the word completion fails? The remaining choices (if any), are listed only if the shell variable autolist is set. Q. In tcsh, how do you disable filename substitution? noglob shell variable can be set to disable the filename substitution feature. Q. Compare the sched tcsh built-in command with the UNIX/Linux at command. These commands are similar but not the same. sched command runs directly from the shell, so it has access to shell variables and settings at command can run a scheduled command at exactly the specified time. Q. Schedule a prompt change at 10:55 as a reminder for an oncoming event. sched 10:55 set prompt = ‘It’s time for the important meeting: >’ Q. What is the impact of -f option in the first line of a csh script? (#!/bin/csh versus #!/bin/csh -f) Using option -f, the shell does not load any resource or startup files (.cshrc for a script), or perform any command hashing, and thus starts faster. Q. How can you start a job in the background, and then terminate your login session, without terminating the background job? We can start a job in the background and then terminate our login session, without terminating the background job using “no hangup” command, nohup: nohup command > output_file &
  • 6. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 6/17 Q. Which is the difference between echo c{1,4,2,5,1} and echo [c]{1,4,2,5,1}? The first echo will display c1 c4 c2 c5 c1, while the second displays only c1. Q. Display the first and last arguments of a script, regardless of the number of arguments, and without a loop. my_var3 = $#argv echomy_var1: $argv[$1] echomy_last_var: $argv[$my_var3] Q. How will you set the ‘search path’ in csv? Search path in csv can be set as follows: a) setenv PATH “/myfolder1 /bin: /myfolder2 /myfile3” b) using list set path = ( /myfolder1 /bin /myfolder2 /myfile3 ) Q. Create a tar archive into /home/user1/myarch.tar, including all files ending in .c, .h, .l, .y,.o and .cc and also the Makefile from two directories, ~/dir1 and ~/dir2. tar cvf /home/user1/myarch.tar ~/{dir1,dir2}/{Makefile,*.{c,h,l,o,y,cc}} or tar cvf /home/user1/myarch.tar ~/dir1/Makefile ~/dir1/*.[chloy] ~/dir1/*.cc ~/dir2/Makefile ~/dir2/*.[chloy] ~/dir2/*.cc Q. Your script must be executed with exactly two arguments, otherwise would be terminated. Write a code to implement these checks. if ($#argv <> 2) then echo “Usage: $0 arg1 arg2” echo “You must give exactly two parameters” exit 20 endif
  • 7. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 7/17 Q. Write a pipeline that reads from the j-th line up to the k-th line of a text file, without using awk. set total = `cat textfile | wc -l` set j = 10 set k = 18 @ count = $k – $j head -$k textfile | tail -$count C Shell – Intermediate Q. Explain the following commands: set names = (John Kathrin Chris Jacob) set names = ($names[1-2] Angela $names[3-]) First command creates an array named names with the four names as its elements. Second command adds name Angela between Kathrin and Chris. Q. How could you move cursor to specified coordinates on screen? (tcsh) We can move the cursor to specified coordinates on the screen using echotc cm column row Q. What is the result of this loop? foreach i ([A-Z]*) ? mv $i $i.csh ? end The loop renames all files that begin with a capital letter, adding the “extension” .csh. Q. Assuming there is a label cleanup somewhere in a script, explain the command onintr cleanup The script will branch to label cleanup if it catches an interrupt signal. Q. Is there a way to repeat a command for a predefined number of times, without using a counter-controlled loop? We can repeat a command for a predefined number of times, without using a
  • 8. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 8/17 counter-controlled loop using the repeat command, e.g., repeat 5 ls >> listings Q. csh and tcsh both support the filename & command completion feature. But the feature works differently in csh than in tcsh. Name the differences. tcsh automatically completes filenames and commands when the Tab key is hit. csh does so only when the filec variable is set, after the Esc key is hit. Q. Name the special login files for csh&tcsh in the order used by each shell. If the command is executed from the (“/etc/csh.cshrc& /etc/csh.login”) system files, the login shell will be started. a) It will run the commands given in the files present in the home directory of the user.~/.cshrc or ~/.tcshrc:During shell startup, it gets executed for each instance of the shell. If ~/.cshrcs present, ‘tcsh’ uses this file else executes ‘~/.tcshrc’ b) ~/.login: at login it is executed after .cshrcby login shell c) ~/.cshdirs: After .login (tcsh), it is executed by login shell Q. What do the following lines do? Explain the differences. ls > filename ls >! Filename In both forms, the output of ls command is redirected to filename. If filename does not exist, it will be created, otherwise it will be truncated. When the first form is used, if shell parameter noclobber is set and filename is an existing file, an error results. The ‘!’ in the second form is used to suppress that check. Q. You can run a script by its name, using an alias or using source. Explain the differences in using each of the three methods. When is it suitable to use each method? A script executed by name is not run in current process (a child process is created to run the script), so this method is suitable to be used only if the environment variables and globally defined aliases (in $HOME/.cshrc) should be known to
  • 9. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 9/17 the script. The method that executes a script using an alias is a variant of executing the script by name. In addition, if the alias is defined from shell prompt, it applies only to the current process. To make the alias global, you must define it in $HOME/.cshrc, but be careful to keep the number of aliases included there to a relatively small number. With the third method, the script runs in the current process, thus, any aliases defined in the current process will be known to your script. Q. How could you override a defined alias? Give a simple example. To override an alias, precede the alias with backslash. Fox example, if you have an alias named rm which runs a custom script, if you want to run the command rm instead of the rm alias, you can do it as shown below: rm filename Q. You plan to write a script that will process the file passed to it as the only argument on the command line. So, your script must accept at least one argument and this single or first argument must be an existing file. Write the necessary checks, displaying the appropriate messages. #!/bin/csh if ( $#argv == 0 ) then echo Error: A file name must be supplied as argument exit 10 else if ( ! -e $1 ) then echo Error: $1 is not an existing file exit 11 endif commands to process the file Q. Write a code excerpt that processes (here, just displays) the elements of an array, from the first one to the last one. set myarray = (value1, value2, value3, value4, value5)
  • 10. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 10/17 set i = 1 while ( $#myarray > 0 ) echo “$i array’s element is: $myarray[1]” shift myarray @ i++ end or, set myarray = (value1, value2, value3, value4, value5) set i = 1 foreach val ( $myarray[*] ) echo “$i array’s element is: $val” @ i++ End Q. Complete the last echo command with a descriptive message in the following script. In other words, explain the value of pct variable. #!/bin/csh set duout = (`du -sk ~`) @ dir_size = $duout[1] set dfout = (`df -k | grep /home`) @ home_size = $dfout[2] @ pct = $dir_size * 100 / $home_size echo “… $pct …” echo “Your home directory takes $pct % of /home filesystem” Q. Extract just the mode of a given file, using two different ways. The mode of a given file can be extracted in the following ways: a) set file_mode = `ls -l filename | tail -1 | cut -f1 -d” ” | cut -c2-` b) set file_mode = `ls -l filename | awk ‘ /^-/ {print substr($1,2)}’`
  • 11. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 11/17 Q. Which is the output of the following excerpt? netstat -an | awk ‘/SHED/ {split($4,c,”.”); print “Connection to ” c[4] ” from ” $5}’ | sort -nt” ” -k 3 Lines in the format “Connection to port_number from IP_Address”, for each established connection, sorted by port_number. Q. Find the position of a substring in a given string. Display a message if the string does not contain this substring. set string = “any string” set sub = “str” set pos = ` echo $string | awk -v s=$sub ‘{print index($0,s)}’` if ( $pos == 0 ) then echo “$string does not contain the substring $sub” else echo “$sub first occurrence in $string starts in position $pos” endif Q. Change the case of a string. set string = “C Shell Programming” set ustring = `echo $string | awk ‘{print toupper($0)}’` # = “C SHELL PROGRAMMING” set lstring = `echo $string | awk ‘{print tolower($0)}’` # = “c shell programming” Q. Assume that in a script the value of a variable limt becomes equal to 92.1. Display the message: Upper limit 92.10% in your_system set system = `hostname` printf “Upper limit %f.2%% in the %s” $limt $system Q. Suppose a script contains the following snippet: set fl = /home/dbuser5/reports/fs_report1.txt echo $fl:e echo $fl:r
  • 12. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 12/17 echo $fl:t echo $fl:h What do you expect to be displayed? txt fs_report1 fs_report1.txt /home/dbuser5/reports Q. Create a script that converts the filenames from current directory to lower case letters. #!/bin/csh -f foreachmy_old_file1 (`ls`) setmy_new_ file1 = `echo $my_old_file1 | tr ´[A-Z]´ ´[a-z]´` if (“$my_new_ file1” == “$my_old_file1”) then continue endif mv $ my_old_file1 $my_new_ file1 end Q. Name some basic differences between csh and tcsh. tcsh includes a command-line editor, file name and command completion features, and enhanced job control, in comparison with the Berkeley csh. Q. Compare the tcsh shell variables correct and autocorrect. autocorrect can be set to correct the word to be completed before any completion attempt. correct can be set to ‘cmd’ to correct command names or to ‘all’ to correct the entire line, each time return is hit. Q. What is the purpose of the special alias shell? The shell special alias can be set to specify an interpreter other than the shell itself.
  • 13. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 13/17 Q. Which is the method to bind the keys to the standard vi or emacs bindings? Shell’s built-in command is bindkey. Its -e option binds all keys to standard emacs bindings, while -v option binds to standard vi bindings. Q. Which is the purpose of shell’s variable color? Shell’s variable color, if set, enables color display for the built in ls-F and it passes –color=auto to ls. Q. Set your prompt to display username@hostname: pwd> It can be done as follows: set prompt = “%n@%m: %/ >” Q. How can you start (from shell prompt) 2 commands “in the background”, ensuring that the second command will start after the completion of the first one? It can be done as follows: (command 1 ; command 2) & Check Out Unix Shell Scripting Tutorials (https://mindmajix.com/unix-shell) Explore Unix Shell Scripting Sample Resumes! Download & Edit, Get Noticed by Top Employers!Download Now! (https://mindmajix.com/unix-shell- scripting-sample-resumes) Social Share Previous (https://mindmajix.com/ui-developer-interview-questions) Next (https://mindmajix.com/vb-net-interview-questions) Popular Courses in 2018 Salesforce Training (https://mindmajix.com/salesforce- training) (5.0)
  • 14. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 14/17 2245 Enrolled Selenium Training (https://mindmajix.com/selenium- training) (5.0) 3370 Enrolled Splunk Training (https://mindmajix.com/splunk-training) (5.0) 1256 Enrolled Python Training (https://mindmajix.com/python-training) (5.0) 1351 Enrolled DevOps Training (https://mindmajix.com/devops-training) (5.0) 2895 Enrolled RPA Training (https://mindmajix.com/rpa-training) (5.0) 4025 Enrolled OpenStack Training (https://mindmajix.com/openstack- training) (5.0)
  • 15. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 15/17 945 Enrolled Data Science Training (https://mindmajix.com/data- science-training) (5.0) 1578 Enrolled Microsoft Azure Training (https://mindmajix.com/microsoft-azure-training) (5.0) 1956 Enrolled MongoDB Training (https://mindmajix.com/mongodb- training) (5.0) 1220 Enrolled Hadoop Training (https://mindmajix.com/hadoop- training) (5.0) 1090 Enrolled Cognos Training (https://mindmajix.com/cognos-training) (5.0) 3012 Enrolled JENKINS Training (https://mindmajix.com/jenkins- training)
  • 16. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 16/17 (4.0) 880 Enrolled SAS Training (https://mindmajix.com/sas-training) (5.0) 1890 Enrolled VMware Training (https://mindmajix.com/vmware- training) (5.0) 3250 Enrolled AngularJS Training (https://mindmajix.com/angularjs- training) (5.0) 3756 Enrolled Salesforce Lightning Training (https://mindmajix.com/salesforce-lightning-training) (5.0) 1458 Enrolled Automation Anywhere Training (https://mindmajix.com/automation-anywhere-training) (5.0) 3780 Enrolled
  • 17. 4/3/2018 The Best Unix Shell Scripting Interview Questions 2018 - Learn Now! https://www.instapaper.com/read/1037948618 17/17 Machine Learning Training (https://mindmajix.com/machine-learning-training) (5.0) 985 Enrolled Artificial Intelligence (AI) Training (https://mindmajix.com/artificial-intelligence-training) (5.0) 75 Enrolled mindmajix.com (https://mindmajix.com/unix-shell-scripting-interview-questions)