Skip to content

Instantly share code, notes, and snippets.

View placek's full-sized avatar

Paweł Placzyński placek

  • BinarApps
  • Łódź Poland
View GitHub Profile
@placek
placek / example.sh
Created July 29, 2013 11:09
Shell useful hacks
# searching through files content in current directory, not in .git subdir
find . -type f -not -path ".git" -exec grep --color -Hn "hello" {} \;
# VoIP
# reciever
nc -l -p 12345 | aplay
# sender
aplay | nc 192.168.0.2 12345
# view the file while it is still updating