diff options
author | erdgeist <> | 2013-09-25 00:50:07 +0000 |
---|---|---|
committer | erdgeist <> | 2013-09-25 00:50:07 +0000 |
commit | 6118cbee11271be828e47dc2c051cc37ac48ac32 (patch) | |
tree | b3a02c627efd9a81a136356fa192c129ef8f938f | |
parent | 9fc9d531257a3f8fbf7e69f1cf13ea963836ba8f (diff) |
Need proper parens
-rwxr-xr-x | minimunin | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ SYSCTL=/sbin/sysctl | |||
7 | [ -f ${SYSCTL} ] || SYSCTL=/usr/sbin/sysctl | 7 | [ -f ${SYSCTL} ] || SYSCTL=/usr/sbin/sysctl |
8 | 8 | ||
9 | # list plugins, read configs | 9 | # list plugins, read configs |
10 | PLUGINS=`/usr/bin/find ${PLUGIN_DIR} -type l -or -type f -not -name *_ -perm +111 -exec basename {} \; 2> /dev/null | /usr/bin/xargs` | 10 | PLUGINS=`/usr/bin/find ${PLUGIN_DIR} \( -type l -or -type f \) -not -name *_ -perm +111 -exec basename {} \; 2> /dev/null | /usr/bin/xargs` |
11 | CONFIGS=`/usr/bin/find ${CONFIG_DIR} -type f -exec /usr/bin/grep -v -e ^\# -e ^$ {} \; -exec /bin/echo [] \; 2> /dev/null` | 11 | CONFIGS=`/usr/bin/find ${CONFIG_DIR} -type f -exec /usr/bin/grep -v -e ^\# -e ^$ {} \; -exec /bin/echo [] \; 2> /dev/null` |
12 | 12 | ||
13 | main() { | 13 | main() { |