Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Do you want to handle the case where the names clash? – therefromhere Nov 14 '12 at 9:52

1 Answer

up vote 2 down vote accepted

You can use a for loop:

for fname in *.txt
do
mv $fname $(head -1 -q $fname|awk '{print $1}')
done
share|improve this answer
No need to pipe head to awk. awk '{print $1; exit}' works. Also, -q is a non-standard option to head. – William Pursell Nov 14 '12 at 16:03
thanks for sharing william.. – Vasu Akeel Nov 18 '12 at 15:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.