あるディレクトリ下のファイルサイズ合計
| 日付 | 2018.10.16 |
|---|---|
| タイトル | あるディレクトリ下のファイルサイズ合計 |
| 本文 | find path/to/target/dir -type f -exec wc -c {} \; | awk '{s+=$1} END { print s; }' |
| 日付 | 2018.10.16 |
|---|---|
| タイトル | あるディレクトリ下のファイルサイズ合計 |
| 本文 | find path/to/target/dir -type f -exec wc -c {} \; | awk '{s+=$1} END { print s; }' |