mirror of
https://codeberg.org/hyperreal/bin
synced 2024-11-01 16:43:08 +01:00
25 lines
560 B
Plaintext
25 lines
560 B
Plaintext
|
#!/bin/sh
|
||
|
# distrobox_binary
|
||
|
# name: default
|
||
|
if [ ! -f /run/.containerenv ] && [ ! -f /.dockerenv ]; then
|
||
|
command="/bin/distrobox-enter -n default -- /bin/emacs "
|
||
|
|
||
|
for arg in "$@"; do
|
||
|
if echo "${arg}" | grep -Eq "'|\""; then
|
||
|
command="${command} \
|
||
|
$(echo "${arg}" | sed 's|\\|\\\\|g' |
|
||
|
sed 's| |\\ |g' |
|
||
|
sed 's|\$|\\\$|g' |
|
||
|
sed "s|'|\\\'|g" |
|
||
|
sed 's|"|\\\"|g')"
|
||
|
elif echo "${arg}" | grep -q "'"; then
|
||
|
command="${command} \"${arg}\""
|
||
|
else
|
||
|
command="${command} '${arg}'"
|
||
|
fi
|
||
|
done
|
||
|
eval ${command}
|
||
|
else
|
||
|
/bin/emacs "$@"
|
||
|
fi
|