(cd /other/directory && ls)
ls -1
を使用できない理由は何かありますか? ?
$ ls -1 /other/directory
file1
file2
編集:
質問が変更されたことに気付きました - 私の解決策は ls /other/directory/*.txt
の新しい例では機能しません .代わりに khachik のソリューションのようなものを使用してください。
$ (cd /other/directory && ls -1 *.txt)