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
{{ message }}
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
(The last '' could be removed, but it's simpler to just leave it.)
Since you can't have single quotes inside single quotes (even escaped), you have to close the first single-quoted string, immediately add a literal single quote (that's why it's escaped), then continue with another single-quoted part of the string.
I recently had an issue with a
shipit.remote
command with a$
in it:mysql -u'xxx' -p'xxx$xx' -h'127.0.0.1' -D db_production
For this to work properly, the
$
needs to be escaped (-p'xxx\$xx'
).What is the best way to deal with this?
Is this something that
shipit.remote
/ssh-pool
should do, or should I have to make sure my strings are escaped before I pass them toshipit.remote
?The text was updated successfully, but these errors were encountered: