20200620_getOshareFromInstagram.sh
1 |
#!/bin/bash |
---|---|
2 |
|
3 |
# オシャレ測定コマンド ver 2.0 |
4 |
|
5 |
|
6 |
while [ "$1" != "" ] |
7 |
do |
8 |
curl -s "https://top-hashtags.com/search/?q=${1}&opt=top"|grep class=\"i-paging|\ |
9 |
sed 's/><a/>\n<a/g'|sed -e 's/<[^>]*>/ /g'|awk '{print $1,$2}'|grep "^#"|\ |
10 |
sed -e 's/^#//g'|numfmt --from=si --field=2|printf "%.20s\t%'10d osare\n" $(cat)|\ |
11 |
head -1 |
12 |
shift |
13 |
sleep 2 |
14 |
done |
15 |
|
16 |
exit 0 |