To print part of the string, replace , with . I use command:
echo "${q:16:6}" | sed 's/,/./'
Is it possible to use something like:
echo "${q:16:6/,/.}"
because it does not work?
To print part of the string, replace , with . I use command:
echo "${q:16:6}" | sed 's/,/./'
Is it possible to use something like:
echo "${q:16:6/,/.}"
because it does not work?