2015년 1월 22일 목요일

Shell 파일에 첫줄 추가 | Add First Line to a File in Shell

Case 1

sed -i '1i TEXT' target.txt

Case 2

echo 'TEXT' > temp.txt
cat target.txt >> temp.txt
mv temp.txt target.txt

댓글 없음:

댓글 쓰기