blob: 035956da619ee75384eacfbcd112c8f1669080e2 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- ./include/MKhashsize.sh.orig 2019-04-22 14:07:41.451003244 -0500
+++ ./include/MKhashsize.sh 2019-04-22 14:10:09.163003249 -0500
@@ -35,7 +35,7 @@
echo " */"
test $# = 0 && set Caps
-TABSIZE=`cat "$@" | grep -v '^[ #]' | grep -v "^$" | grep -v "^capalias"| grep -v "^infoalias" | grep -v "^userdef" | grep -v "^used_by" | wc -l`
+TABSIZE=$(cat "$@" | grep -v '^[ #]' | grep -v "^$" | grep -v "^capalias"| grep -v "^infoalias" | grep -v "^userdef" | grep -v "^used_by" | wc -l)
echo ""
echo "#define CAPTABSIZE ${TABSIZE}"
|