如何使用逗号将ls命令的结果连接到字符串中

时间:2015-04-09 06:18:48

标签: linux shell

我使用的是linux shell。

我想将ls .结果加入字符串。

例如:

a=`ls .`
echo $a

然后$ a将是" file1 file2 file3"

但我希望它是" file1,file2,file3"

很高兴意识到这一点?

1 个答案:

答案 0 :(得分:1)

$ ls -xm
$ # or
$ echo `ls .`|sed 's/ /,/g'