You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So strange! Works if I remove the space at the end of the string.
$ scripts/beautysh.py - <<EOF> #!/bin/bash> VAR="> text "> > if true; then> echo should be indented> fi> EOF#!/bin/bashVAR="text "if true; thenecho should be indentedfi
The text was updated successfully, but these errors were encountered:
$ scripts/beautysh.py - <<EOF> #!/bin/bash> VAR="> "> > if true; then> echo should be indented> fi> EOF#!/bin/bashVAR=""if true; thenecho should be indentedfi
So strange! Works if I remove the space at the end of the string.
The text was updated successfully, but these errors were encountered: