How to use newlines and quotes with toot
by Hund | 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
Comments
There's no comments for this post. Use this e-mail form if you would like to leave a /public/ comment on this post. Or simply send me a private e-mail message if you have any feedback, or just want to say hello.