I used this
head -1 -q *.txt|awk '{print $1}'
which prints first line of the content in a file. Now how to proceed with renaming the files?
You can use a for loop:
for fname in *.txt do mv $fname $(head -1 -q $fname|awk '{print $1}') done
head
awk
awk '{print $1; exit}'
-q
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
6 months ago
viewed
166 times
active