What is $*?
Its mainly used for showing up all
params. This show all parameter values passed in shell script
What does $# stand for?
# will return the
number of parameters that are passed as the command-line arguments.
What does $? Return?
$? will return exit status of command .0 if
command gets successfully executed ,non-zero if command failed.
What are Different types of shells?
sh : the oldest shell
csh : C shell
ksh : Korn Shell
bash : bourne again shell
Shell script accepts
parameters in following format…
$1
would be the first command line argument, $2 the second, and so on
$0
is the name of the script or function
If your script has more than 9 params then
accept in following way…
${12}
: 12th param
${18}
: 18th param
for, if, while, case
The Shell variable which is exported would
available to all the programs outside the Shell also. And the shell variable
which is not exported, would available for that shell or for the shell program
only, in which the variable is declared.
Export LANG=C
will
make the variable LANG the global variable, put it into the
global environment. All other processes can use it.
LANG=C
will
change the value only in the current script.
echo $string | cut -d” ”
-f1
echo $string | cut -d” ” -f2
echo $string | cut -d” ” -f3
How will you list only the empty lines in a file (using grep)?
grep “^$” filename.txt
How would you get the character positions 10-20 from a text file?
cat filename.txt | cut -c 10-20
or
cut -c10-20 <filename.txt>
How would you replace the n character in a file with some xyz?
sed ‘s/n/xyz/g’ filename > new_filename
We can replace n characters by using the
following command:
1,$s/./xyz/g
where
1 shows that the search string will start searching patterns from
first line of the file.
‘.’ for any character.
g for global replacemet.
What is the difference between a ‘thread’ and a ‘process’?
A process is a collection of virtual
memory space, code, data, and system resources. A thread is code
that is to be serially executed within a process. A processor executes
threads, not processes, so each application has at least one
process, and a process always has at least one thread of execution, known as
the primary thread. A process can have multiple threads in addition to the
primary thread
Thread – is stream of executable code within
process. They are light weight process. All thread with in a process
share process instruction,code & data segment,open
filedescriptor,signal handler,userID and GroupID. Thread has its own
set of register including program counter,stack pointer
To invoke the shell indirectly this line is
added as the first line in the file.This particular line invokes korn shell
What is use of “cut” command? Give some examples.
Cut – Utility used to cut/Strip out the
required data/text from the source.
Cut can be used in three modes,
Stripping by Character
cut -c 1-3
Striping by Byte length
Stripping by delimiter and fields.
cut -d “|” -f1
Where
-d “|” -> Delimiter used in input text to
separate columns
-f1 -> Field/Column number
While processing huge input files, Cut’s
performance is far better than awk
csh : C shell
ksh : Korn Shell
bash : bourne again shell
$1 would be the first command line argument, $2 the second, and so on
$0 is the name of the script or function
${12} : 12th param
${18} : 18th param
will make the variable LANG the global variable, put it into the global environment. All other processes can use it.
LANG=C
will change the value only in the current script.
echo $string | cut -d” ” -f2
echo $string | cut -d” ” -f3
1,$s/./xyz/g
where 1 shows that the search string will start searching patterns from first line of the file.
‘.’ for any character.
g for global replacemet.
ReplyDeleteRegards
Sridevi Koduru (Senior Oracle Apps Trainer Oracleappstechnical.com)
Please Contact for One to One Online Training on Oracle Apps Technical, Financials, SCM, SQL, PL/SQL, D2K at sridevikoduru@oracleappstechnical.com | +91 - 9581017828.