Created
June 6, 2013 11:40
-
-
Save homleen/5720923 to your computer and use it in GitHub Desktop.
批量替换文件第一行
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for file in *.xml; do | |
is_head_xml=$(head -n 1 $file | grep -e '<?xml') | |
if [ -z "$is_head_xml" ]; then | |
echo $file | |
else | |
sed '1s/^.*$/<?xml version="1.0" encoding="utf-8"?>/' $file > ./output/$file | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment