DEV Community

Discussion on: Simple note taking from the command line

Collapse
 
rssi profile image
rSSi • Edited

that's how i did it:
in .bash_aliases

to add an entry
how() { echo "$@" | tee -a ~/Dropbox/howto.txt; }

to display the notes taken
alias howto='more ~/Dropbox/howto.txt'