Full privileges on .command file, but it says I don't have appropriate privileges
You need to set 'execute' on the file for it to allow you to run it:
chmod u+x /path/to/file.command
u
is the owner of the file, +x
adds 'execute', so u+x
gives the owner of the file the ability to execute it
…then you can run it in the future by double-clicking it.