What is use of "cut" command?
Answers were Sorted based on User's Feedback
Answer / seshadri sethi
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
cut -b -1-72
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
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / swaroopa
cut is used to get a specific data from a file. Supppose
you want to get a data in a file from column 10 to 20, you
can get it by using cut
eg: cat filename.txt | cut -c 10-20
eg: cut -c10-20 <filename.txt>
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / suresh
Cut is used for column wise search of strings orto display
it.
| Is This Answer Correct ? | 3 Yes | 1 No |
What is the use of break command?
Explain about the exit command?
How will you list only the empty lines in a file (using grep)?
How can any user find out all information about a specific user like his default shell, real-life name, default directory, when and how long he has been using the system?
When should shell programming/scripting not be used?
Calculate a real number calculation directly from the terminal and not any shell script.
Why should we use shell scripts?
How can I set the default rwx permission to all users on every file which is created in the current shell?
How do you read arguments in a shell program - $1, $2 ..?
What are the various stages of a linux process it passes through?
Write down the syntax of "for " loop
write a shell script to check the failed jobs?