I am writing a csh script and need to assign the numerical value in a string to a variable
Here is an example of the string value: "pkt_size=78"
The characters in the string will always be the same except for the number.
I pretty much need to extract the value after the "=" sign.
What Unix command can I use to do this?
Thanks,