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
Sometimes I define in bash scripts a variable using multiple successive lines to get one or more newlines in the according string. For e.g. the script
#!/bin/sh T="" if [ "$T" = "" ]; then T="Line1 Line2" fi echo "$T"
would output
Line1 Line2
But after running beautysh about that script one get the code
beautysh
and the according output is now erroneously
So such continuation lines should probably not be indented.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sometimes I define in bash scripts a variable using multiple successive lines to get one or more newlines in the according string. For e.g. the script
would output
But after running
beautysh
about that script one get the codeand the according output is now erroneously
So such continuation lines should probably not be indented.
The text was updated successfully, but these errors were encountered: