mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
14 lines
213 B
Bash
14 lines
213 B
Bash
|
#!/bin/bash
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
quote() {
|
||
|
local arg
|
||
|
for arg in "$@"; do
|
||
|
printf "'"
|
||
|
printf "%s" "$arg" | sed -e "s/'/'\\\\''/g"
|
||
|
printf "' "
|
||
|
done
|
||
|
}
|
||
|
|
||
|
exec scl enable devtoolset-1.1 "$(quote "$@")"
|