This repository was inspired by a comment to a post on https://news.ycombinator.com/.
In the cited comment, a user shared a template they use for documenting their work on project. I have created a shell script that automatically generates a new template and prints it standard output.
To create a new log from the template, use:
project-log 'title'
The command prints to standard output. Use pipes to save to a file:
project-log 'title' > logfile.txt
- Create a link for the file so it is accessible without needing to specify its full path:
touch /usr/local/bin/project-log && ln -s project-log.sh /usr/local/bin/project-log - Make the link executable:
chmod u+x /usr/local/bin/project-log