commands are a few command notes fritzshark2?.sh are scripts to dump fritzbox traffic to wireshark mount_container is my crypsetup automount skript
10 lines
241 B
Plaintext
Executable File
10 lines
241 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 -
|
|
|
|
|