This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
NewerOlder