I'm trying to understand the following shell script:
/usr/local/bin/uncrustify -q -c ~/objc.cfg -l oc
But I don't know what some of the parts say. This part
/usr/local/bin/uncrustify
says go to the bin directory and run the program uncrustify with two parameters -q and -c.
This part
~/objc.cfg -l oc
Says look in the home directory for the file objc.cfg and pass it in as a parameter too. Am I right?