Skip to main content

You wantWith the backticks around the commands, you're attempting to execute the output of:
echo "flush_all" | /usr/bin/nc 172.16.198.130 11211
In your case "OK"
like already mentioned in the comments just remove the backticks.

You want to execute the output of:
echo "flush_all" | /usr/bin/nc 172.16.198.130 11211
In your case "OK"
like already mentioned in the comments just remove the backticks.

With the backticks around the commands, you're attempting to execute the output of:
echo "flush_all" | /usr/bin/nc 172.16.198.130 11211
In your case "OK"
like already mentioned in the comments just remove the backticks.

Source Link
xx4h
  • 2.4k
  • 19
  • 17

You want to execute the output of:
echo "flush_all" | /usr/bin/nc 172.16.198.130 11211
In your case "OK"
like already mentioned in the comments just remove the backticks.