This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
bash_scripts/general/journal/nje.sh

6 lines
185 B
Bash

#!/bin/bash
##a script to quickly create a new text file with the date and time
##as its name. nje stands for new journal entry.
touch ~/Dropbox/Apps/Plain.txt/`date +%F_%T`.txt
exit 0