I am tired of creating a file with nano, saving it and then making it executable. Is there a command that makes it in one step?
I am tired of creating a file with nano, saving it and then making it executable. Is there a command that makes it in one step?
touch file && chmod +x file
is good but this here is the one true command for the purpose.deleted by creator
that’s what I was trying to say.