kayaven@lemmy.worldtoVideos@lemmy.world•Let's Play Mario's Wacky World - Yoshi's House Plus
2·
1 year agoNow I know I’m not the only one that still watches that playthrough every once in a while. The aggressive screams of the word “Giga” make it the perfect let’s play.
You could define a function that takes a parameter, which touches a file with the parameters value, chmods it and then opens it with nano?
create_exec() { touch "$1" chmod +x "$1" nano "$1" }
Then you could type
create_exec file.sh
and it would do the rest for you.