mirror of
https://github.com/rworkman/slackpkg
synced 2024-12-25 21:58:42 +01:00
Merge pull request #28 from shamilbi/master
fix: egrep and fgrep commands have been deprecated since 2007
This commit is contained in:
commit
b2b7edb10a
3 changed files with 4 additions and 3 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*.tmp
|
|
@ -639,7 +639,7 @@ function mkregex_blacklist() {
|
|||
s,^, ,
|
||||
s,$, ,
|
||||
s,^ (extra|pasture|patches|slackware(|64)|testing)/ $,^\1 ,
|
||||
s,^ ([^/]+)/ $, \\\.\\\/$PKGMAIN\\\/\1\$,
|
||||
s,^ ([^/]+)/ $, \\\./$PKGMAIN/\1\$,
|
||||
" ${CONF}/blacklist > ${TMPDIR}/blacklist.tmp
|
||||
|
||||
# Filter server and local package lists through blacklist
|
||||
|
@ -1276,7 +1276,7 @@ function sanity_check() {
|
|||
[ "$SPINNING" = "off" ] || spinning ${TMPDIR}/waiting &
|
||||
|
||||
for i in $(ls -1 $ROOT/var/log/packages/ | \
|
||||
egrep -- "^.*-(${ARCH}|fw|noarch)-[^-]+-upgraded"); do
|
||||
grep -E -- "^.*-(${ARCH}|fw|noarch)-[^-]+-upgraded"); do
|
||||
REVNAME=$(echo ${i} | awk -F'-upgraded' '{ print $1 }')
|
||||
mv $ROOT/var/log/packages/${i} $ROOT/var/log/packages/${REVNAME}
|
||||
mv $ROOT/var/log/scripts/${i} $ROOT/var/log/scripts/${REVNAME}
|
||||
|
|
|
@ -222,7 +222,7 @@ while [ -n "$1" ] ; do
|
|||
CMD=$1
|
||||
shift
|
||||
if [ -n "$1" ]; then
|
||||
if echo $1 | egrep -q "^\.{0,2}/" ; then
|
||||
if echo $1 | grep -Eq "^\.{0,2}/" ; then
|
||||
if [ -e $1 ]; then
|
||||
INPUTLIST=$(cat $1 | tr "\n" " ")
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue