Hello
I am new in unix . I would be grateful if you could help me , i want to manage lines of a text file for example i want to do [grep sth] for the first file(first line) of the text file.
i use this code
Thanks in advance
I am new in unix . I would be grateful if you could help me , i want to manage lines of a text file for example i want to do [grep sth] for the first file(first line) of the text file.
i use this code
Code:
ls -lR | awk ' BEGIN {print "LIST OF ALL FILES"} /[-]rw*/ {print $9} END {print " FINISH"}' > filesystem.txt
Thanks in advance