标签: linux shell
我使用的是linux shell。
我想将ls .结果加入字符串。
ls .
例如:
a=`ls .` echo $a
然后$ a将是" file1 file2 file3"
但我希望它是" file1,file2,file3"
很高兴意识到这一点?
答案 0 :(得分:1)
$ ls -xm $ # or $ echo `ls .`|sed 's/ /,/g'