Using the command-line interface you can both save and retrieve notes. Here are some examples using curl:
-
Retrieve a note's content and save it to a local file:
-
curl https://txt.nibbletools.com/generated-key > test.txt
-
Save specific text to a note:
-
curl https://txt.nibbletools.com/generated-key -d 'Hi, welcome on mytxt!'
-
Save the content of a local file (e.g., /etc/hosts) to a note:
-
cat /etc/hosts | curl https://txt.nibbletools.com/generated-key --data-binary @-