Hi, first at all, sorry for my poor english.

I'm trying to make a bash script to run chrome/chromium from a terminal with the --proxy-server="iport" parameter, it read the iport from a txt file, and restart every 15sec, something like that:

Code:
#!/bin/bash
while read proxy ; do
        /opt/google/chrome/chrome --proxy-server=\"$proxy\";
        sleep 15
        pkill chrome
        sleep 1
done< proxy.txt
Chrome/Chromium runs with the error

Code:
Error 336 (net::ERR_NO_SUPPORTED_PROXIES): Unknown error."
If i put manually /opt/google/chrome/chrome --proxy-server="iport; it works perfectly.

Any solution for that?