Newline at end of line #23
svenssonjoel
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
Glad you were able to resolve the issue. As for the feature request, I don't think adding an entire new flag just for customized line termination would be appropriate. People who want to do it can easily do so with scripts like the one you've mentioned. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Is it possible to make the tool insert newline characters at the end of each line? And allow the user to choose how to terminate a line.
(I would want \r\n, for example)
I see that it actually does insert newlines, sorry about that ;). But being able to choose additional characters or alternative ones for line termination would perhaps be good?
ascii-image-converter -c image.file | awk '{printf "%s\r\n", $0}'
does the trick!Thanks!
Beta Was this translation helpful? Give feedback.
All reactions