mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
14 lines
213 B
Bash
Executable File
14 lines
213 B
Bash
Executable File
#!/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 "$@")"
|