#!/bin/sh SORTCMD="grep -v Zuka | tail -n 16" cat file | ${SORTCMD} grep: |: No such file or directory -- AY7-UANIC || AY15-RIPE =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
According to Alexander Yeremenko: Hi!
#!/bin/sh SORTCMD="grep -v Zuka | tail -n 16" cat file | ${SORTCMD} grep: |: No such file or directory
Сделай через alias alias sc='grep -v Zuka | tail -n 16'
-- AY7-UANIC || AY15-RIPE =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
-- Taras Heychenko =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
Может луче где то так? : SORTCMD=`grep -v Zuka | tail -n 16`
-----Original Message----- From: owner-uanog-outgoing@uanog.kiev.ua [mailto:owner-uanog- outgoing@uanog.kiev.ua] On Behalf Of Alexander Yeremenko Sent: Tuesday, August 23, 2005 8:35 PM To: uanog@uanog.kiev.ua Subject: [uanog] piping in sh Q
#!/bin/sh SORTCMD="grep -v Zuka | tail -n 16" cat file | ${SORTCMD} grep: |: No such file or directory
-- AY7-UANIC || AY15-RIPE =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
=================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
Hi Alexander,
#!/bin/sh SORTCMD="grep -v Zuka | tail -n 16" cat file | ${SORTCMD}
cat file | sh -c "${SORTCMD}" потому что иначе | передастся grep'у аргументом:
grep: |: No such file or directory
-- Michael Стоит ли думать, если все pавно будешь говоpить дpугое? =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
participants (4)
-
&y0
-
Alexander Yeremenko
-
Michael Petuschak
-
Taras Heychenko