Extract words from string with a different separator between them (/
in this example)
echo "param1/param2/param3/..." | awk -F'/' '{print $2}'
Extract words from string with a different separator between them (/
in this example)
echo "param1/param2/param3/..." | awk -F'/' '{print $2}'