Issue
I want to use space as a delimiter with the cut
command.
What syntax can I use for this?
id='dv4'>
Solution
cut -d ' ' -f 2
Where 2 is the field number of the space-delimited field you want.
Answered By - RichieHindle Answer Checked By - Katrina (WPSolving Volunteer)