We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cowsay -n
When reading piped input, cowsay -n prints a trailing newline. This behavior doesn't exist in the original perl version:
$ # perl $ echo 'test' | /opt/local/bin/cowsay -n ______ < test > ------ \ ^__^ \ (oo)\_______ (__)\ )\/\ ||----w | || || $ # javascript $ echo 'test' | ~/n/bin/cowsay -n ______ / test \ \ / ------ \ ^__^ \ (oo)\_______ (__)\ )\/\ ||----w | || ||
The text was updated successfully, but these errors were encountered:
interesting because it works fine if you don't use the option -n, I wonder what magic is going on. I'll look into it one day, feel free to send a PR
-n
Sorry, something went wrong.
Fix piuccio#28 by stripping the trailing new line
d5bd58e
26d3ffd
No branches or pull requests
When reading piped input,
cowsay -n
prints a trailing newline. This behavior doesn't exist in the original perl version:The text was updated successfully, but these errors were encountered: