Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
618 views
in Technique[技术] by (71.8m points)

linux - Add a header to a tab delimited file

I'd like to add a header to a tab-delimited file but I am not sure how to do it in one line in linux.

Let us say my file is:

roger18columbianew york

albert21dartmouthnew london

etc...

and now I'd like to add a header that says:

nameageuniversitycity

How would I do that in one line in linux? I am ok with awk, sed, cat, etc. not familiar at all with perl though.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There isn't a "prepend" operator like the "append" operator >>, but you can write the header to a temp-file, copy your file's contents into the temp-file after that, and move it back:

echo -e "nameageuniversitycity" | cat - yourfile > /tmp/out && mv /tmp/out yourfile

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...