We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bea10c + 2320dfd commit e99b463Copy full SHA for e99b463
src/main/scripts/flux.sh
@@ -81,12 +81,14 @@ fi
81
# a variable definition:
82
vars_to_script=$( cat <<'EOF'
83
s/^[^=]*$//g ; # is this not a variable definition?
84
- t quit ; # then jump to quit
+ # then jump to quit
85
+ t quit
86
s/\\/\\\\/g ; # otherwise escape backslashes,
87
s/!/\\!/g ; # escape exclamation marks,
88
s/='(.*)'$/=\1/ ; # remove quotes,
89
s/^([^=]+)=(.*)$/s!\\$\1!\2!g ; /g ; # convert to sed regexp command
- b ; # and continue with next line
90
+ # and continue with next line
91
+ b
92
: quit
93
q
94
EOF
0 commit comments