Created
February 11, 2025 03:54
-
-
Save ko1nksm/180e97d8eae4b02923fcbc199c3efb67 to your computer and use it in GitHub Desktop.
位置パラメータを変数にバックアップして後で戻す
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -eu | |
[ "${BASH_VERSION:-}" ] && shopt -s expand_aliases | |
append_parray() { | |
set -- "$1" "$2" "${2#*\'}" '' | |
until [ "$2" = "$3" ] && eval "$1=\"\${$1} '\$4\$3'\""; do | |
set -- "$1" "$3" "${3#*\'}" "$4${2%%\'*}'\"'\"'" | |
done | |
} | |
encode_args() { | |
eval "$1=; while [ \${2+x} ]; do append_parray \"$1\" \"\$2\"; shift; done" | |
} | |
alias decode_args='eval set -- ' | |
set -- a b '' c "foo '' bar \" baz" "new \` | |
line'" | |
encode_args saved_args "$@" | |
set -- | |
decode_args "$saved_args" # eval "set -- $saved_args" | |
printf '[%s]\n' "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment