in reply to Cutting last word from a output line
What do you have so far? The shift command will return each command line parameter in order. split /\s+/,$string will divide $string up by spaces, which might work for dividing the command output into words.
|
|---|