管理人Kのひとりごと

デジモノレビューやプログラミングや写真など

lsでもkbやmbで表示したい

lsでもファイルサイズをkbやmbで表示できたのでメモ。

確認環境

ls (GNU coreutils) 8.22
Copyright (C) 2013 Free Software Foundation, Inc.
ライセンス GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

作者 Richard M. Stallman および David MacKenzie。

lsでもファイルサイズをkbやmbで表示する

dfと同じように「-h」オプションでOKだそうです

ls -h /usr/bin
-rwxr-xr-x.   1 root root     740 124  2019 dockerd
-rwxr-xr-x.   1 root root     32M 1113 00:12 dockerd-current
lrwxrwxrwx.   1 root root       8 1214  2019 domainname -> hostname
-rwxr-xr-x.   1 root root     56K 101 00:57 dracut
-rwxr-xr-x.   1 root root     54K  513  2020 dropdb
-rwxr-xr-x.   1 root root     58K  513  2020 droplang
-rwxr-xr-x.   1 root root     54K  513  2020 dropuser
-rwxr-xr-x.   1 root root    111K 1117 07:24 du
-rwxr-xr-x.   1 root root     78K 1031  2018 dumpkeys
-rwxr-xr-x.   1 root root    3.1M 102 01:37 dwp
-rwxr-xr-x.   1 root root     320  82  2017 easy_install
-rwxr-xr-x.   1 root root     328  82  2017 easy_install-2.7
-rwxr-xr-x.   1 root root     33K 1117 07:24 echo

参考にしました