Щоб встановити мої параметри за замовчуванням для grep
(від MSYS в Win7) для ігнорування об'єктних файлів та конкретних файлів, я експортував
GREP_OPTIONS
у ~/.profile
такий спосіб:
export GREP_OPTIONS='--exclude=*.{o,obj,pyc} --exclude-dir={.git,_Output}'
export GREP_COLOR='1;32'
Навіть після перезавантаження оболонки для вступу .profile
в силу, мій дзвінок grep
все одно шукає об’єктивні файли. Однак GREP_COLOR
змінна, здається, працює. Я навіть спробував явно встановити свої параметри в одну оболонку перед виконанням grep
:
$ grep --version
GNU grep 2.5.4
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
$ export GREP_OPTIONS='--exclude=*.{o,obj,pyc} --exclude-dir={.git,_Output}'
$ echo $GREP_OPTIONS
--exclude=*.{o,obj,pyc} --exclude-dir={.git,_Output}
$ grep $GREP_OPTIONS -r foo .
grep: ./bar.o: Permission denied
./baz.c:My foo text
$ grep --exclude=*.{o,obj,pyc} --exclude-dir={.git,_Output} -r foo .
./baz.c:My foo text
Як отримати grep
автоматично використовувати GREP_OPTIONS
з ~/.profile
?