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

Top Ten Images of the #FeesMustFall Tweetstreitmaier/FeesMustFall...jq '.entities.media[]?.media_url' feesmustfall_tweets.json | tr -d '"' | sort | uniq -c | sort -n -r | head -n 10

  • Upload
    others

  • View
    4

  • Download
    0

Embed Size (px)

Citation preview

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