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
Having to quote the WordPress command is incredibly awkward. Imagine commands which themselves have to be quoted.
When I use Pantheon's Terminus tool (a CLI for interacting with their hosting platform) I can do terminus remote:wp sitename.live -- user list. The -- there signifies "I'm done passing options to terminus, and the rest of everything should be passed to wp on the remote host" and is quite handy.
The text was updated successfully, but these errors were encountered:
Works:
ymir wp "user list"
Does not work:
ymir wp user list
ymir wp -- user list
Having to quote the WordPress command is incredibly awkward. Imagine commands which themselves have to be quoted.
When I use Pantheon's Terminus tool (a CLI for interacting with their hosting platform) I can do
terminus remote:wp sitename.live -- user list
. The--
there signifies "I'm done passing options toterminus
, and the rest of everything should be passed towp
on the remote host" and is quite handy.The text was updated successfully, but these errors were encountered: