Hi Zev, thanks for writing this, it was really helpful. You might want to look into how your tldr snippet displays on the blog though, at least to my browser the ending looks like 2> /dev/null &. This caused issues at first and took me a while to figure out that it should be 2>/dev/null &&.
I also needed to add a semicolon after set tags=tags (per this page), otherwise I was getting the message bash: syntax error: unexpected end of file after every write.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Hi Zev, thanks for writing this, it was really helpful. You might want to look into how your tldr snippet displays on the blog though, at least to my browser the ending looks like
2> /dev/null &. This caused issues at first and took me a while to figure out that it should be2>/dev/null &&.I also needed to add a semicolon after
set tags=tags(per this page), otherwise I was getting the messagebash: syntax error: unexpected end of fileafter every write.