package reorg

This commit is contained in:
Colin Henry
2020-06-11 21:26:57 -07:00
parent b7b8f7a60b
commit f24e8c90df
64 changed files with 622 additions and 17 deletions

15
scripts/bin/tel.bash Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# A port of plan9 'tel' program
for var in "$@"
do
if test -f "$HOME/.tel"; then
grep -i $1 $HOME/.tel
fi
grep -hi $1 /usr/lib/tel /usr/lib/areacodes
done
exit