How to preserve white space in Bash arguments
Solution 1:
I assume you have to re-wrap it into quotes, like so:
#! /bin/bash
# some script here
shift
cm2 "$@"
I assume you have to re-wrap it into quotes, like so:
#! /bin/bash
# some script here
shift
cm2 "$@"