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.
ツリー スクリプトに基づいてシェル スクリプトを作成しましたが、そのスクリプトにファイルとディレクトリを表示させる方法が必要です (ちなみに、Mac OS X で実行するにはスクリプトが必要です)。
に置き換えls -R | grep ':$'てから、名前に「:」が追加されないことを反映するようにコマンドをfind . -print調整し、 findは現在のディレクトリを表示します。sed
ls -R | grep ':$'
find . -print
sed
find . -print | sed -e '/^\.$/d' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'