ThuderbirdでGoogleカレンダーを読んだら重かったので、直近以外の予定を削除したときに使用したコマンドです
何かの参考になればどうぞ
wget https://www.google.com/cal/path/to/basic.ics -O hoge.ics 2> /dev/null
perl -i -nle 'print;print and exit if $. >= 1000 and /^END\:VEVENT/' hoge.ics
ThuderbirdでGoogleカレンダーを読んだら重かったので、直近以外の予定を削除したときに使用したコマンドです
何かの参考になればどうぞ
wget https://www.google.com/cal/path/to/basic.ics -O hoge.ics 2> /dev/null
perl -i -nle 'print;print and exit if $. >= 1000 and /^END\:VEVENT/' hoge.ics