Browse Source

-irrelevant typos

psyc://loupsycedyglgamf.onion/~lynX 40 years ago
parent
commit
fa560e7570
4 changed files with 5 additions and 5 deletions
  1. 2 2
      bin/grephdr.sh
  2. 1 1
      bin/grepsrc.sh
  3. 1 1
      bin/pogen.sh
  4. 1 1
      bin/rename.sh

+ 2 - 2
bin/grephdr.sh

@@ -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 "$@" 

+ 1 - 1
bin/grepsrc.sh

@@ -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 "$*" 

+ 1 - 1
bin/pogen.sh

@@ -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
 

+ 1 - 1
bin/rename.sh

@@ -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