AppleScript名:バッテリ充放電の回数を取得する |
–バッテリ充放電回数 set cycle to (do shell script "ioreg -l | grep ’\"CycleCount\"’ | sed ’s/^.*CycleCount. = \\([0-9]*\\)$/\\1/g’") |
macOS 10.14.6上で数値だけが返ってくるわけではなかったので、泥縄式にこんな風に書き換えて回数の数値だけえられるようにしてみました。
AppleScript名:バッテリの充放電回数を取得する v2 |
–バッテリ充放電回数 try set cycle to (do shell script "ioreg -l | grep ’\"CycleCount\"’ | sed ’s/^.*CycleCount. = \\([0-9]*\\)$/\\1/g’") set cRes to first item of (paragraphs of cycle) as number return cRes on error return false end try |
More from my site
(Visited 15 times, 1 visits today)