方式一
   vi 123.sh

#!/bin/bash

[ -f 123.txt ] && rm 123.txt
for x in `echo a b c`
do
        echo $x >> 123
done

   sh 123.sh
   cat 123.txt

a
b
c

方式二,一行指令解決
   echo "a b c" | xargs -n 1 echo > 123.txt

Related posts 相關文章
find指令,搭配exec與xargs語法參數
More...
top指令
More...
sysctl指令
More...
rarlinux 指令–壓縮分割加密檔案
More...

作者

留言

撰寫回覆或留言

發佈留言必須填寫的電子郵件地址不會公開。