aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/%HOME%/.bash_utils
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-11-01 13:24:30 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-11-01 13:24:30 +0300
commit224623110093f1ab4a41aee0b2ab187868351da5 (patch)
tree52d905d82a8418b4d6992cc16ef7760f7c6feb7f /%HOME%/.bash_utils
parent.inputrc: set show-all-if-unmodified on (diff)
downloadlinux-home-224623110093f1ab4a41aee0b2ab187868351da5.tar.gz
linux-home-224623110093f1ab4a41aee0b2ab187868351da5.zip
runc*: interface update
Diffstat (limited to '%HOME%/.bash_utils')
-rw-r--r--%HOME%/.bash_utils/cxx.sh20
1 files changed, 10 insertions, 10 deletions
diff --git a/%HOME%/.bash_utils/cxx.sh b/%HOME%/.bash_utils/cxx.sh
index 92113d1..5d1a438 100644
--- a/%HOME%/.bash_utils/cxx.sh
+++ b/%HOME%/.bash_utils/cxx.sh
@@ -12,11 +12,11 @@ runc() (
local -a c_flags=(${runc_flags[@]+"${runc_flags[@]}"})
local -a src_files
- local -a prog_flags
+ local -a prog_args
while [ "$#" -gt 0 ]; do
case "$1" in
- -c|--c-flags)
+ -c|--comp-arg)
if [ "$#" -le 1 ]; then
echo "${FUNCNAME[0]}: missing argument for parameter: $1" >&2
return 1
@@ -27,7 +27,7 @@ runc() (
;;
-h|--help)
- echo "usage: ${FUNCNAME[0]} [-h|--help] [-c|--c-flags FLAG]... [--] [SRC_PATH]..."
+ echo "usage: ${FUNCNAME[0]} [-h|--help] [-c|--comp-arg ARG]... C_PATH... [-- [PROG_ARG]...]"
return 0
;;
@@ -43,7 +43,7 @@ runc() (
esac
done
- prog_flags=("$@")
+ prog_args=("$@")
local build_dir
build_dir="$( mktemp --directory )"
@@ -58,7 +58,7 @@ runc() (
${c_flags[@]+"${c_flags[@]}"} \
${src_files[@]+"${src_files[@]}"}
- "$output_name" ${prog_flags[@]+"${prog_flags[@]}"}
+ "$output_name" ${prog_args[@]+"${prog_args[@]}"}
)
runcxx_flags=('-Wall' '-Wextra' '-std=c++14')
@@ -68,11 +68,11 @@ runcxx() (
local -a cxx_flags=(${runcxx_flags[@]+"${runcxx_flags[@]}"})
local -a src_files
- local -a prog_flags
+ local -a prog_args
while [ "$#" -gt 0 ]; do
case "$1" in
- -c|--cxx-flags)
+ -c|--comp-arg)
if [ "$#" -le 1 ]; then
echo "${FUNCNAME[0]}: missing argument for parameter: $1" >&2
return 1
@@ -83,7 +83,7 @@ runcxx() (
;;
-h|--help)
- echo "usage: ${FUNCNAME[0]} [-h|--help] [-c|--cxx-flags FLAG]... [--] [SRC_PATH]..."
+ echo "usage: ${FUNCNAME[0]} [-h|--help] [-c|--comp-arg ARG]... CPP_PATH... [-- [PROG_ARG]...]"
return 0
;;
@@ -99,7 +99,7 @@ runcxx() (
esac
done
- prog_flags=("$@")
+ prog_args=("$@")
local build_dir
build_dir="$( mktemp --directory )"
@@ -114,5 +114,5 @@ runcxx() (
${cxx_flags[@]+"${cxx_flags[@]}"} \
${src_files[@]+"${src_files[@]}"}
- "$output_name" ${prog_flags[@]+"${prog_flags[@]}"}
+ "$output_name" ${prog_args[@]+"${prog_args[@]}"}
)