Files
gists/commands
Tobias Kessels e85d8a9f85 added a command and 2 templates
added the gnuplot command
added a peepdf dockerfile
added a berbone dockerfile as a template
2018-03-29 16:24:10 +02:00

11 lines
319 B
Plaintext
Executable File

#!/bin/cat
#uniq without sorting:
awk '{a[$0]+=1; if (a[$0]<2)print}'
#send my mic to remote
arecord -f cd -t raw | oggenc - -r | ssh <remote> mplayer -
#and reverse
ssh <user>@<remotehost> 'arecord -f cd -t raw | oggenc - -r' | mplayer -
#Zahlen verteilung analysieren
primes 1 100 |gnuplot -p -e 'plot "/dev/stdin"'