2
lsコマンドの色をfindまたはduの出力とマージする方法は?
cwdのファイルとフォルダーのサイズをリストする簡単なエイリアスがあります。 (この場合のドットファイルを含み、ゼロサイズを無視します) du -sh .[!.]* * | sort -hr | grep -v '^0' findでも同様に達成できます: find .[!.]* * -maxdepth 0 -exec du -sh {} \; | sort -hr | grep -v '^0' 出力例: // .ssh & .byobu are folders - .zsh* are files // currently not able to distinguish them by …