「Linux」catコマンドとsedコマンドでファイルの行頭に引用符を付ける方法
1.書式
cat ファイル名| sed /^/’>’/
2.使用例
# cat 200.txt
AA
BB
11
22
3.行頭に引用符">"を付ける
# cat 200.txt | sed s/^/’>’/
>AA
>BB
>11
>22
4.行頭に引用符"<“をつける
# cat 200.txt | sed s/^/'<'/
<AA
<BB
<11
<22
Coding Changes the World
1.書式
cat ファイル名| sed /^/’>’/
2.使用例
# cat 200.txt
AA
BB
11
22
3.行頭に引用符">"を付ける
# cat 200.txt | sed s/^/’>’/
>AA
>BB
>11
>22
4.行頭に引用符"<“をつける
# cat 200.txt | sed s/^/'<'/
<AA
<BB
<11
<22