Displaying 1 result from an estimated 1 matches for "filesgreppeddotc".
Did you mean:
filesgreppeddotcmd
2006 Sep 27
3
Bug in find command?
...ease 4.4 (Final)
Release: 4.4
Codename: Final
$ uname -a
Linux wlmlfs08.homegroannetworking 2.6.9-42.0.2.EL #1 Tue Aug 22
23:56:05 CDT 2006 i686 athlon i386 GNU/Linux
$ cat MakeBugReportData
#!/bin/bash
cd /usr/src
rpm -q --file /usr/bin/find
find . | grep -i '\.cmd$' >/tmp/FilesGreppedDotCmd
find . | grep -i '\.c$' >/tmp/FilesGreppedDotC
find . -iname '*.cmd' >/tmp/FilesFoundDotCmd
find . -iname '*.c' >/tmp/FilesFoundDotC
wc -l /tmp/FilesGreppedDotCmd /tmp/FilesFoundDotCmd \
/tmp/FilesGreppedDotC /tmp/FilesFoundDotC
[wild-bill at wlmlfs08 tmp]$ sh ....