Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
-c option in bash
what is the -c option for in bash?
@Joseph-Sandoval,
I thought this was answered here.
Reads commands from the following string and assign any arguments to the positional parameters. e.g.
bash$ bash -c 'set a b c d; IFS="+-;"; echo "$*"' a+b+c+d
from https://www.tldp.org/LDP/abs/html/bash-options.html