mirror of
https://github.com/spritsail/alpine.git
synced 2024-11-05 09:26:23 +00:00
Replace ppwd with inline sed expression
This commit is contained in:
parent
90548d3f0f
commit
78fa7c8b2d
@ -23,7 +23,7 @@ RUN apk --no-cache add \
|
||||
tini \
|
||||
openssl \
|
||||
&& wget -qO /sbin/su-exec https://github.com/frebib/su-exec/releases/download/${SU_EXEC_VER}/su-exec-alpine-$(uname -m) \
|
||||
&& chmod +x /sbin/su-exec /usr/bin/* \
|
||||
&& chmod +x /sbin/su-exec \
|
||||
&& apk --no-cache del openssl
|
||||
|
||||
ENTRYPOINT ["/sbin/tini" , "--"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
export PAGER='/usr/bin/less -R'
|
||||
export EDITOR='/usr/bin/vi'
|
||||
export PS1='\e[1;36m\u@\h\e[0m \e[0;32m$(ppwd)\e[0m> '
|
||||
export PS1='\e[1;36m\u@\h\e[0m \e[0;32m$(pwd | sed -E '"'s|^'\$HOME'|~|;s|(.*)/|\\1%#|;s|((^\\|/)\\.?[^/%]{1})[^/%]*|\\1|g;s|(.*)%#|\\1/|')"'\e[0m> '
|
||||
|
||||
# Source configuration files from /etc/profile.d
|
||||
for i in /etc/profile.d/*.sh ; do
|
||||
|
@ -1,19 +0,0 @@
|
||||
#!/bin/sh
|
||||
set -e -o pipefail
|
||||
|
||||
dir="$(echo -n "${1:-$PWD}" | sed "s|$HOME|~|")"
|
||||
|
||||
if [ "$dir" = '~' -o "$dir" = '/' ]; then
|
||||
echo "$dir"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
parts="$(echo "$dir" | tr '/' '\n' | sed '$d')"
|
||||
last="$(echo "$dir" | tr '/' '\n' | tail -n 1)"
|
||||
|
||||
for d in "$parts"; do
|
||||
out="$out$(echo "$d" | sed -E '/^\./s/^(.{2}).*/\1/;/^[^\.]/s/^(.{1}).*/\1/')\n"
|
||||
done
|
||||
|
||||
echo -en "$out" | tr '\n' '/'
|
||||
echo "$last"
|
Loading…
Reference in New Issue
Block a user