-
Notifications
You must be signed in to change notification settings - Fork 14
Closed
Labels
Milestone
Description
It's not possible to pipe a string of PHP directly into wp eval. This doesn't work:
echo 'echo phpversion();' | wp eval
You need to use xargs which means working with quote marks is difficult.
echo 'echo phpversion();' | xargs -I {} wp eval {}
It would be great if wp eval accepted input from stdin.
Reactions are currently unavailable