2

Можно ли diff вывод двух команд grep ?

В настоящее время я ищу файлы, используя разные шаблоны исключений, и вывод у них довольно длинный, поэтому я хотел посмотреть, сработал ли мой новый шаблон, или вывод остался прежним ..

Можно ли как-то передать две команды grep в diff или что-то в этом роде?

grep --exclude=*{.dll, pdb} --ril "dql"
grep  --ril "dql"

2 ответа2

1

В bash с использованием процесса подстановки:

$ echo a > FILE
$ echo b > FILE1
$ diff <(grep a *) <(grep b *)
1c1
< FILE:a
---
> FILE1:b

Как описано в man bash:

   Process Substitution
   Process substitution is supported on systems that support named
   pipes (FIFOs) or the /dev/fd method of naming open files.  It
   takes the form of <(list) or >(list).  The process list is run
   with its input or output connected to a FIFO or some file in
   /dev/fd.  The name of this file is passed as an argument to the
   current command as the result of the expansion.  If the >(list)
   form is used, writing to the file will provide input for list.
   If the <(list) form is used, the file passed as an argument
   should be read to obtain the output of list.

   When available, process substitution is performed
   simultaneously with parameter and variable expansion,
   command substitution, and arithmetic expansion.
0

Использование на лету :

diff <(grep pattern file) <(grep another_pattern file)

Подстановка процесса: <(command) или >(command) заменяется записью FIFO или /dev /fd /*. В основном сокращение для настройки именованного канала. Смотрите http://mywiki.wooledge.org/ProcessSubstitution.
Пример: diff -u <(sort file1) <(sort file2)

Так :

diff <(grep --exclude=*{.dll, pdb} --ril "dql") <(grep  --ril "dql")

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .