mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
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:
parent
638912544a
commit
fef6546735
2 changed files with 7 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue