diff options
author | LAN-TW <lantw44@gmail.com> | 2013-12-10 00:31:55 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2013-12-10 00:31:55 +0800 |
commit | 95d261bb5d3ab20f941ff784da1b6f0689d3b2a0 (patch) | |
tree | 504efa4d8e08c77263e30ef83d2bf21a1c33e6d6 /bash_include | |
parent | 8036fd50355054388251a84c9dff16072fb1fc13 (diff) | |
download | configfile-95d261bb5d3ab20f941ff784da1b6f0689d3b2a0.tar configfile-95d261bb5d3ab20f941ff784da1b6f0689d3b2a0.tar.gz configfile-95d261bb5d3ab20f941ff784da1b6f0689d3b2a0.tar.bz2 configfile-95d261bb5d3ab20f941ff784da1b6f0689d3b2a0.tar.lz configfile-95d261bb5d3ab20f941ff784da1b6f0689d3b2a0.tar.xz configfile-95d261bb5d3ab20f941ff784da1b6f0689d3b2a0.tar.zst configfile-95d261bb5d3ab20f941ff784da1b6f0689d3b2a0.zip |
bash_include: 修正錯誤 grep_safe -> safe_grepbash_include-20131210
Diffstat (limited to 'bash_include')
-rw-r--r-- | bash_include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash_include b/bash_include index bab1154..f52bcdb 100644 --- a/bash_include +++ b/bash_include @@ -1437,7 +1437,7 @@ function freebsd_ports_should_rebuild () { /usr/local/bin/* /usr/local/sbin/* \ /usr/local/lib/* /usr/local/libexec/* \ /usr/local/libexec/*/* \ - 2>/dev/null | grep_safe 'not found' | \ + 2>/dev/null | safe_grep 'not found' | \ { while read oneline; do echo ${oneline} | cut -d ' ' -f 1; done; } | uniq) reqpkg=$({ for i in $reqcomp; do pkg_info -q -W $i; done } | sort | uniq) echo $reqpkg |