Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windowsでこれを行う方法は知っていますが、Linuxマシンのディレクトリにあるファイルのリストをtxtまたはcsvファイルとして作成したいと考えています。または、画面に表示するのではなく、コマンドの出力を保存する方法はありますか? どんな助けでも大歓迎です。
lsフォルダー内のファイルを一覧表示し、オプションを確認man lsします。シェル コマンドの出力を保存するには、リダイレクトを使用します。
ls
man ls
ls > list.txt
また
ls -l > list.txt
等