How to delete note in terminal velocity

2

I just found a command line note taking tool: terminal_velocity.

But I don't find a way to quickly remove a note, is there anyone knows how to do that?

Aaron Shen

Posted 2015-12-04T04:52:35.807

Reputation: 604

Does terminal_velocity -h give you anything useful? – DavidPostill – 2015-12-04T11:11:26.613

no, nothing about removing a note – Aaron Shen – 2015-12-04T12:01:16.553

Answers

1

In the details section of the documentation it states:

Details

Notes are kept as plain text files in a notes directory (~/Notes by default).

You can cd into ~/Notes and remove the file you want to delete:

$: cd ~/Notes
$: rm your-note.txt

Millie Walsh

Posted 2015-12-04T04:52:35.807

Reputation: 11