1
1
type pushd >/dev/null 2>&1 || pushd() {
2
+ # === Initialize ===================================================
2
3
case "${DIR_STACK:-}" in '') DIR_STACK=$(pwd);; esac
4
+ # === Try to change directory ======================================
3
5
cd "$1" >/dev/null 2>&1 || {
4
6
echo "${0##*/}: pushd: $1: No such file or directory" 1>&2
5
7
return 1
6
8
}
9
+ # === Push the directory stack =====================================
7
10
DIR_STACK=$(printf '%s\n%s' "$(pwd)" "$DIR_STACK")
11
+ # === Print the contents in the stack ==============================
8
12
printf '%s' "$DIR_STACK" |
9
- awk 'BEGIN {homedir=ENVIRON["HOME"]; #
13
+ awk '# --- Replace the prefix of the homedirectory path with "~" if possible #
14
+ BEGIN {homedir=ENVIRON["HOME"]; #
10
15
hd_len =length(homedir); #
11
16
while (getline dir) { #
12
17
if ( homedir == "" ) {print dir; continue;} #
@@ -21,16 +26,21 @@ type pushd >/dev/null 2>&1 || pushd() {
21
26
}
22
27
23
28
type popd >/dev/null 2>&1 || popd() {
29
+ # === Initialize ===================================================
24
30
set -- "$(printf '%s\n' "${DIR_STACK:-}" | tail -n +2)"
25
31
set -- "$1" "$(printf '%s\n' "$1" | head -n 1)"
26
32
case "$2" in '') echo "${0##*/}: popd: directory stack empty" 1>&2; return 1;; esac
33
+ # === Try to change directory to the top of the stack ==============
27
34
cd "$2" >/dev/null 2>&1 || {
28
35
echo "${0##*/}: popd: $1: No such file or directory" 1>&2
29
36
return 1
30
37
}
38
+ # === Pop the directory stack ======================================
31
39
DIR_STACK=$1
40
+ # === Print the contents in the stack ==============================
32
41
printf '%s\n' "$1" |
33
- awk 'BEGIN {homedir=ENVIRON["HOME"]; #
42
+ awk '# --- Replace the prefix of the homedirectory path with "~" if possible #
43
+ BEGIN {homedir=ENVIRON["HOME"]; #
34
44
hd_len =length(homedir); #
35
45
while (getline dir) { #
36
46
if ( homedir == "" ) {print dir; continue;} #
0 commit comments