0
我剛剛得知,報價作出某些情況下,一個巨大的差異,我做了一些測試它,這裏就是我剛剛做,shell引用行爲
$ xfs=$(find . -type f -perm -111) #find all files with x-perm
$ echo "$xfs"
./b.out
./a.out
$ echo $xfs
./b.out ./a.out #why all in one line, but the above takes two?
如果$xfs
包含\n
,據我所知,echo -e
將擴大\n
,但echo "$xfs"
如何取兩行?