當(dāng)前目錄下多個(gè)文件合并為一個(gè)文件
1、將多個(gè)文件合并為一個(gè)文件沒(méi)有添加換行符
find ./ -name "iptv_authenticate_201801*" | xargs cat > iptv_authenticate.txt
2、設(shè)置換行符^J
find ./ -name "iptv_authenticate_201801*" | xargs sed 'a\^J' > iptv_authenticate.txt
3、默認(rèn)換行符
find ./ -name "iptv_authenticate_201801*" | xargs sed 'a\' > iptv_authenticate.txt
find ./ -name "iptv_liveswitch_201801*" | xargs sed 'a' > iptv_liveswitch.txt
find ./ -name "iptv_qualified_201801*" | xargs sed 'a\' > iptv_qualified.txt
find ./ -name "iptv_vodload_201801*" | xargs sed 'a' > iptv_vodload.txt
當(dāng)前目錄下所有后綴為txt文件中追加一行數(shù)據(jù)作為文件內(nèi)容的第一行內(nèi)容
1、方法一
for fullpath in `find . -type f -name "*.txt"`
do
sed -i '1i\Num\tPhone\tDate\tMessage\tId\tGudge' ${fullpath}
done
備注:
-type f
是指后邊的查找文件類(lèi)型為文件
2、方法二
find . -type f -name "*.txt" | xargs -I {} sed -i '1i\Num\tPhone\tDate\tMessage\tId\tGudge' {}
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接
您可能感興趣的文章:- Shell腳本用for循環(huán)遍歷參數(shù)的方法技巧
- Shell腳本中awk指令的用法
- Shell中字符串排序的幾種方法
- Shell中整數(shù)計(jì)算的幾種方式
- 一條命令讓你明白shell中read命令的常用參數(shù)
- Shell中統(tǒng)計(jì)字符串中單詞的個(gè)數(shù)的幾種方法
- Shell中去除字符串里的空格或指定字符的方法
- Shell中去除字符串前后空格的方法
- shell中使用expect命令進(jìn)行遠(yuǎn)程執(zhí)行命令腳本
- Shell腳本中管道的幾種使用實(shí)例講解