Hund

How to use newlines and quotes with toot

November 30, 2018

I post a lot of updates to Mastodon using the CLI-client toot. And one thing that can be tricky to figure out is how to post content with newlines and quotes.

For a regular post you just use toot like this:

toot post "Example content."

But if you want to use newlines and quotes, you need echo the content with the flag -e, which enables interpretation of backslash escapes.

You can then add a newline using \n like this:

echo -e "First line\nSecond line" | toot post

And if you want to use a quotes, you just need to escape the characters like this:

echo -e "\"Example quote.\"" | toot post

Meta

No Comments

Use the e-mail form, if you wish to leave feedback for this post. Markdown is supported. [Terms of service]