Skip to content

Commit 57a3afe

Browse files
authoredJun 12, 2017
Create dir_stack.shlib
1 parent 44dfa35 commit 57a3afe

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed
 

‎dir_stack.shlib

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
type pushd >/dev/null 2>&1 || pushd() {
2+
# === Initialize ===================================================
23
case "${DIR_STACK:-}" in '') DIR_STACK=$(pwd);; esac
4+
# === Try to change directory ======================================
35
cd "$1" >/dev/null 2>&1 || {
46
echo "${0##*/}: pushd: $1: No such file or directory" 1>&2
57
return 1
68
}
9+
# === Push the directory stack =====================================
710
DIR_STACK=$(printf '%s\n%s' "$(pwd)" "$DIR_STACK")
11+
# === Print the contents in the stack ==============================
812
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"]; #
1015
hd_len =length(homedir); #
1116
while (getline dir) { #
1217
if ( homedir == "" ) {print dir; continue;} #
@@ -21,16 +26,21 @@ type pushd >/dev/null 2>&1 || pushd() {
2126
}
2227

2328
type popd >/dev/null 2>&1 || popd() {
29+
# === Initialize ===================================================
2430
set -- "$(printf '%s\n' "${DIR_STACK:-}" | tail -n +2)"
2531
set -- "$1" "$(printf '%s\n' "$1" | head -n 1)"
2632
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 ==============
2734
cd "$2" >/dev/null 2>&1 || {
2835
echo "${0##*/}: popd: $1: No such file or directory" 1>&2
2936
return 1
3037
}
38+
# === Pop the directory stack ======================================
3139
DIR_STACK=$1
40+
# === Print the contents in the stack ==============================
3241
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"]; #
3444
hd_len =length(homedir); #
3545
while (getline dir) { #
3646
if ( homedir == "" ) {print dir; continue;} #

0 commit comments

Comments
 (0)