> [rshepard@salmo ~/projects/nevada/queenstake/stats]$ sort -t=| streams.txt >
> out.txt
> -bash: ./streams.txt: Permission denied

Your problem is that '|' is a shell metacharacter.  You have to quote
it or backwhack it for your command to work correctly:

        sort -t\| streams.txt >out.txt

-- 
Hal Pomeranz, Founder/CEO      Deer Run Associates      [email protected]
   Computer Forensic Investigations, Information Security, Training
_______________________________________________
PLUG mailing list
[email protected]
http://lists.pdxlinux.org/mailman/listinfo/plug

Reply via email to