is there a way of splitting standard out/ standard error from a script that falls over, so far I've got:
% ./scratch.pl | split
if you imagine the error was like:
asdf asdf werqwer asdfasf asdasdf
I want a way to split this up by whitespace to become:
asdf
asdf
werqwer
asdfasf
asdasdf
I can do this reasonably simply using perl, but I'm sure there is a quicker way to do it using Cshell...
Cheers
% ./scratch.pl | split
if you imagine the error was like:
asdf asdf werqwer asdfasf asdasdf
I want a way to split this up by whitespace to become:
asdf
asdf
werqwer
asdfasf
asdasdf
I can do this reasonably simply using perl, but I'm sure there is a quicker way to do it using Cshell...
Cheers