Re: [SLUG] Find weirdo

2004-12-16 Thread Terry Collins
Michael Fox wrote: On Thu, 16 Dec 2004 13:21:03 +1100, Terry Collins [EMAIL PROTECTED] wrote: Can someone explain this? [EMAIL PROTECTED]:/spam-hold/spam-hold$ find /spam -name smtpdAB* -print %p Does this mean you have some saved spam? Err yes. Just over 3gb. Message size mostly

[SLUG] Find weirdo

2004-12-15 Thread Terry Collins
Can someone explain this? [EMAIL PROTECTED]:/spam-hold/spam-hold$ find /spam -name smtpdAB* -print %p find: paths must precede expression Usage: find [path...] [expression] [EMAIL PROTECTED]:/spam-hold/spam-hold$ find /spam -name smtpdAB* -print `%p' [EMAIL

Re: [SLUG] Find weirdo

2004-12-15 Thread Benno
On Thu Dec 16, 2004 at 13:21:03 +1100, Terry Collins wrote: Can someone explain this? [EMAIL PROTECTED]:/spam-hold/spam-hold$ find /spam -name smtpdAB* -print %p find: paths must precede expression Usage: find [path...] [expression] [EMAIL PROTECTED]:/spam-hold/spam-hold$ find /spam

Re: [SLUG] Find weirdo

2004-12-15 Thread Peter Rundle
Terry Collins wrote: Can someone explain this? [EMAIL PROTECTED]:/spam-hold/spam-hold$ find /spam -name smtpdAB* -print %p find: paths must precede expression Usage: find [path...] [expression] find /spam -name 'smtpdAB*' -print The shell is expanding the * before calling find. * means all

Re: [SLUG] Find weirdo

2004-12-15 Thread Jan Schmidt
quote who=Terry Collins Can someone explain this? [EMAIL PROTECTED]:/spam-hold/spam-hold$ find /spam -name smtpdAB* -print %p The problem is your escaping of smtpdAB* - as it is, the expression will be expanded by the caller and find will actually receive a list of matching files/dirs

Re: [SLUG] Find weirdo

2004-12-15 Thread Michael Fox
On Thu, 16 Dec 2004 13:21:03 +1100, Terry Collins [EMAIL PROTECTED] wrote: Can someone explain this? [EMAIL PROTECTED]:/spam-hold/spam-hold$ find /spam -name smtpdAB* -print %p Does this mean you have some saved spam? Any chance of organising you to inject that back to a email address of

Re: [SLUG] Find weirdo

2004-12-15 Thread scott
[EMAIL PROTECTED] wrote on 16/12/2004 01:21:03 PM: Can someone explain this? [EMAIL PROTECTED]:/spam-hold/spam-hold$ find /spam -name smtpdAB* -print %p find: paths must precede expression Usage: find [path...] [expression] [EMAIL PROTECTED]:/spam-hold/spam-hold$ find /spam