Everytime I've a reporting task to do, I'll have to
- Create a folder
- Copy the same HTML/JS files in it
- Edit the files as per the task/requirement
- upload them to S3 or local directory
I want to automate these tasks by creating a commandline( may be any ) app that takes care of all the above tasks, when i call a command , it should perform the below tasks, like
COMMAND create template
creates a folder with all the required/pre-defined HTML/JS files
I'm not able to figure out how to achieve this ?.
For example :
when i run the below command it creates a bunch of files in the folder where it's being run .
django-admin startproject myproject
I want to achieve the same thing . should I use nodejs, Pytho or any other language? How should I do this ? totally no idea about how to go and all. I use Mac and few users are on windows.
Thanks,
My first question & Totally a newbie :)