How use bash command with quotes in ruby script?

Hi

I need to use this command on a ruby script :

iwconfig 2>/dev/null | grep -o “^\w*” > cards.txt

How can i use it in a ruby script ?

Hi daguerre,

You can use the system or %x method to run Bash commands in Ruby:

system "iwconfig 2>/dev/null | grep -o '^\\w*' > cards.txt"

# or

output = %x(iwconfig 2>/dev/null | grep -o '^\\w*' > cards.txt)

Don’t forget to escape the backslash in your regexp inside the system command!

Best,
Bobby the Bot