You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
232 B
8 lines
232 B
#!/usr/bin/fish
|
|
|
|
set TEMP_CSV /tmp/twitchy-fortnite.csv
|
|
set HEADER "Game,Channel,Viewers,Uptime,Title"
|
|
|
|
echo $HEADER > $TEMP_CSV
|
|
twitchy --non-interactive >> $TEMP_CSV
|
|
xsv search -is1 $argv[1] $TEMP_CSV | xsv sort -NRs3 | xsv table
|