Grep out "emacs" so that this nice script doesnt kill my editor when i

* nautilus-clean.sh: Grep out "emacs" so that this nice script
doesnt kill my editor when i happen to be editting the source to
component in question.
This commit is contained in:
Ramiro Estrugo 2000-04-19 06:53:11 +00:00
parent 638912544a
commit fef6546735
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2000-04-18 Ramiro Estrugo <ramiro@eazel.com>
* nautilus-clean.sh: Grep out "emacs" so that this nice script
doesnt kill my editor when i happen to be editting the source to
component in question.
2000-04-18 Andy Hertzfeld
made link files control the additional text displayed beneath them.

View file

@ -16,7 +16,7 @@ for NAME in $AUX_PROGS; do
EGREP_PATTERN=`echo $NAME | sed -e 's/\(.\)\(.*\)/[\1]\2/' | sed -e 's/\[\\\^\]/\[\\^\]/'`;
COUNT=`ps auxww | egrep $EGREP_PATTERN | wc -l`;
COUNT=`ps auxww | egrep $EGREP_PATTERN | grep -v emacs | wc -l`;
if [ $COUNT -gt 0 ]; then
if [ -z $FOUND_ANY ]; then