Finderでファイルサイズを棒グラフ表示する
Finderの表示では、個々のファイルの大きさが直感的にとらえられない。サイズでソートすると今度はどのファイルが新しいのかがわからない。そこで、ファイルサイズをComment欄に棒グラフで表示するだけのスクリプトを作った。
The Finder's display does not intuitively capture the size of individual files. If you sort by size, you can't tell which file is newer. So I made a script that just displays the file size as a bar graph in the comment column.
#!/bin/bash
function sizebar_ () {
filepth="$1"
comment=$(mdls -r -nullMarker "" -n kMDItemFinderComment "$filepth" | sed -e 's:|*::' )
size=$(du -s "$filepth" | awk '{s=int(log($1)/log(2));for(i=0;i<s;i++)printf("|")}')
newcomm=$size$comment
/usr/bin/osascript -e "set filepath to POSIX file \"$filepth\"" \
-e "set the_File to filepath as alias" \
-e "tell application \"Finder\" to set the comment of the_File to \"$newcomm\""
}
# escape spaces in the file name
SAVEIFS=$IFS
IFS=$(echo -en "\n\b")
for f in *
do
sizebar_ "$f"
done
IFS=$SAVEIFS
スクリプトを実行したディレクトリの全ファイルに、対数目盛の棒グラフが付加される。
A bar graph in log scale will be added to the commend fields of all files in the directory where the script was executed.
Author And Source
この問題について(Finderでファイルサイズを棒グラフ表示する), 我々は、より多くの情報をここで見つけました https://qiita.com/vitroid/items/295060a7dca081e0d71d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .