-irrelevant typos
authorpsyc://loupsycedyglgamf.onion/~lynX <ircs://psyced.org/youbroketheinternet>
Wed, 4 Apr 1984 00:44:05 +0000 (00:44 +0000)
committerpsyc://loupsycedyglgamf.onion/~lynX <ircs://psyced.org/youbroketheinternet>
Wed, 4 Apr 1984 00:44:05 +0000 (00:44 +0000)
bin/grephdr.sh
bin/grepsrc.sh
bin/pogen.sh
bin/rename.sh

index 203370b6c99cca6c0654ed016c763e6fa2e61cd2..dd9050335c4fbb2454fd678e4b98dee770b94d3b 100755 (executable)
@@ -1,4 +1,4 @@
 #!/bin/sh
-# This scipt is in the public domain.
-# grepsrc.sh string  --- greps for string over all java files
+# This script is in the public domain.
+# grepsrc.sh string  --- greps for string over all header files
 find . -name "*.h" -print | grep -v "#" | xargs grep "$@" 
index 6b1771f1f630356ad16bc647d9afb0546cfe26a6..eb2d5e462c87ab2706113a69d89fae7c38b3d5d7 100755 (executable)
@@ -1,4 +1,4 @@
 #!/bin/sh
-# This scipt is in the public domain.
+# This script is in the public domain.
 # grepsrc.sh string  --- greps for string over all C files
 find . -name "*.c" -print | grep -v "#" | xargs grep -n "$*" 
index e0b664ce6a0a26afd4cbb79e9d0452027cfa1716..453e0b1d888a72f0bc9de43742a0414f34093d47 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# This scipt is in the public domain.
+# This script is in the public domain.
 find src -name "*.c" | grep -v \# | grep -v /test_ | grep -v /perf_  | grep -v _old | grep -v chat | grep -v .libs/ | sort  > po/POTFILES.in
 grep -l _\( `find src -name "*.h"` | grep -v "platform.h" | grep -v _old | grep -v chat | sort >> po/POTFILES.in
 
index 71ba5a369728969187814782be0ca0dc028a8d87..bf3c767c514d4b7c091394fc80ea649ce3f3ae3f 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# This scipt is in the public domain.
+# This script is in the public domain.
 for n in `find * -name "*.c"` `find * -name "*.h"` `find * -name "*.am"` `find * -name "*.conf"`  `find * -name "*.conf.in"` 
 do
  cat $n | sed -e "s/$1/$2/g" > $n.new