A fuss-free, command-line tool for quick jot downs.
- Instantly create notes from the command line
- Auto-generated timestamps for note names
- Search through all your notes
- List and view notes with clean formatting
- View note statistics
- Export notes to Downloads folder
- Easy note management and deletion
- Java must be installed on your system.
- Download
TapTapTap.jar
andInstall.sh
from the latest release - Run install script
chmod +x install.sh
thensudo ./install.sh
- That's all, type
ttt
in your terminal to get started.
# Quick note (auto-generated name)
ttt content
# Named note
ttt name::content
# List all notes
ttt -l
# View specific note
ttt -v name
# Search text within notes
ttt -f "text"
# Show statistics
ttt -s
# Delete specific note
ttt -d name
# Delete all notes (with confirmation)
ttt -da
# Export note to Downloads
ttt -e name
# Export all notes
ttt -ea
- Notes are stored in
~/.taptaptap/
- Each note is a .txt file with the following format:
Note: [note-name] Content: [your-note-content]
- Exports are saved to
~/Downloads/TapTapTap_Exports/
ttt content -> saves note with auto-generated name
ttt name::content -> saves note with given name
ttt -v name -> view specific note
ttt -l -> list all notes
ttt -f searchtext -> search notes
ttt -s -> show statistics
ttt -d name -> delete note
ttt -da -> delete all notes
ttt -e name -> export note
ttt -ea -> export all notes
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.