-
Extract 2 characters in file
Hello,I want to extract 2 characters of the first column of the one file, that file has 19 columns, in bash script.the first column is some thing like this 2005-07-25, and I want to extract 07. I wrote this codeawk '{ print $ substr ($1,6, 2)}, but out put is he whole of the column: 2005-07-25! can you help me?
-
-
What is the difference between grep and find commands?
A)provides information on helpb)grep searches in a file whereas find searches for files and directories.c)both a) and b)d) none of the above
-
Find First Word of the First Line
How to find first word of the first line of the first ten files?
-
-
-
-
-
-
-
-
How to grep directories
How to grep directories has reached above 80% from the df output using basin grep command.below are the steps i have used
df -h > date.ksh
grep "%" date.ksh >space.ksh
cut -c 40-44,45-80 space.ksh > %.ksh
grep "[80-10][0]%" %.ksh
see the output after above cmd
$ grep "[80-10][0]%" %.ksh
100% /opt/tivoli/tsm
80% /prod/users/edw -
-
-
Construct pipes to execute the following jobs?
1. Output of who should be displayed on the screen with value of total number of users who have logged in displayed at the bottom of the list.2. Output of ls should be displayed on the screen and from this output the lines containing the word ‘poem’ should be counted and the count should be stored in a file. 3. Contents of file1 and file2 should be displayed on the screen and this output should be...
-
-
-
-
-
What is relative path and absolute path?
Absolute path : Exact path from root directory.Relative path : Relative to the current path.
UNIX Interview Questions
Ans