たいちょーの雑記

ぼくが3日に一度くらい雑記をかくところ

シェル芸160ノック27

9月末に発売されたシェル芸本の続きです。

gihyo.jp

前回はこちら

xztaityozx.hatenablog.com

問題146

$ git branch --no-merged=main -r | xargs -n1 -I@ zsh -c "git log -1 --since $(date -d '30 days ago' +%F) @ | grep . &> /dev/null || {echo branch @; git log @ -1 | head -n3}"  | sel --remove-empty 2: | paste - - - - -d ' '

問題147

$ cat o | grep -P "[\p{Hiragana}\p{Katakana}\p{Han}]+" | sd '<[^>]+>' '' | sed '/^$/d' | mecab | sel -gd\\s+ 1 | grep -v EOS | sort | uniq -c | sort -rn | head
     8988 シェル
     85747269665143 勉強
     42

問題148

$ grep line_cd o -A1 | sd '<[^>]+>' '' | awk '{print $1}' | grep -v -- -- | paste - -  | grep 京急本線
27001   京急本線
$ http http://file.ueda.tech/eki/l/27001.xml > o
$ cat o | grep station_name | sd '<[^>]+>' '' | awk '{print $1}'
泉岳寺
品川
北品川
新馬場
青物横丁
鮫洲
立会川
大森海岸
平和島
大森町
梅屋敷
京急蒲田
雑色
六郷土手
京急川崎
...

問題149

$ curl wttr.in/Shizuoka
Weather report: Shizuoka

      \   /     Clear
       .-.      +7(5) °C
    ― (   ) ―   ↘ 10 km/h
       `-10 km
      /   \     0.0 mm
...

問題150

$ http https://gihyo.jp/magazine/SD/backnumber > o
$ cat o | grep 品切 -B4 | nkf -Lu | sd '<[^>]+>' '' | sed '/^$/d' | grep -v -- -- | paste - - -  | sort -u
Software Design 202010月号    2020918日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 202011月号    20201017日発売      定価1,342円(本体1,220円+税10%)[品切]
Software Design 202012月号    20201118日発売      定価1,342円(本体1,220円+税10%)[品切]
Software Design 20206月号     2020518日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 20207月号     2020618日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 20208月号     2020718日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 20209月号     2020818日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 202110月号    2021918日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 202111月号    20211018日発売      定価1,342円(本体1,220円+税10%)[品切]
Software Design 202112月号    20211118日発売      定価1,342円(本体1,220円+税10%)[品切]
Software Design 20211月号     20201218日発売      定価1,342円(本体1,220円+税10%)[品切]
Software Design 20212月号     2021118日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 20213月号     2021218日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 20214月号     2021318日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 20215月号     2021416日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 20216月号     2021518日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 20217月号     2021617日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 20218月号     2021716日発売       定価1,342円(本体1,220円+税10%)[品切]
Software Design 20219月号     2021818日発売       定価1,342円(本体1,220円+税10%)[品切]

$ dateutils.dseq --format "%Y/%m https://gihyo.jp/magazine/SD/archive/%Y/%Y%m"  2020-01-01 1mo 2020-12-01 | while read YM URL; do curl "$URL" | nkf -Lu | grep ございません &> /dev/null && echo $YM;done