Just -- Command Runner
Have you ever think of a simple tool to just run simple commands?
The Problem I’ll give my real project needs as an example. I hate to write these same commands over and over to this blog:
hugo server -D ls content/posts hugo new content/posts/FILE.md nano content/posts/FILE.md I hate to memorize or read what command to what in every project. I needed a script to run that simple commands.
Also, I love using alias, but I didn’t want to fill my shell config file with project related alias.
read more