top ten images of the #feesmustfall tweetstreitmaier/feesmustfall...jq...

25
jq '.entities.media[]?.media_url' feesmustfall_tweets.json | tr -d '"' | sort | uniq -c | sort -n -r | head -n 10 | awk '{print $2}' | xargs -n1 curl -O Top Ten Images of the #FeesMustFall Tweets Thomas Reitmaier [email protected] Dept. of Computer Science & UCT Centre for ICT4D

Upload: others

Post on 10-Jul-2020

4 views

Category:

Documents


0 download

TRANSCRIPT

jq '.entities.media[]?.media_url' feesmustfall_tweets.json | tr -d '"' | sort | uniq -c | sort -n -r | head -n 10 | awk '{print $2}' | xargs -n1 curl -O

Top Ten Images of the #FeesMustFall Tweets

Thomas [email protected]

Dept. of Computer Science &UCT Centre for ICT4D

jq '.' feesmustfall_tweets.json

jq '.entities.media[]?.media_url' feesmustfall_tweets.json

…| tr -d '"'

…| tr -d '"' | sort | uniq -c

…| sort -n -r

…| sort -n -r | head -n 10

… | head -n 10 | awk ‘print{$2}'

… | xargs -n1 curl -0

1

2

3

4

5

6

7

8

9

10