aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/bd.sh
blob: 7901e115de38a33cc22c259a9bd8e3661cd51aaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Move back up the directory tree to the first directory matching the name
bd() {

    # Check argument count; default to ".."
    case $# in
        0) set -- .. ;;
        1) ;;
        *)
            printf >&2 'bd(): Too many arguments\n'
            return 2
    esac

    # Look at argument given; default to going up one level
    case $1 in

        # If it has a leading slash or is . or .., don't touch the arguments
        /*|.|..) ;;

        # Otherwise, we'll try to find a matching ancestor and then shift the
        # initial request off the argument list
        *)

            # Push the current directory onto the stack
            set -- "${1%/}" "$PWD"

            # Keep chopping at the current directory until it's empty or it
            # matches the request
            while set -- "$1" "${2%/*}" ; do
                case $2 in
                    */"$1") break ;;
                    */*) ;;
                    *)
                        printf >&2 'bd(): No match\n'
                        return 1
                        ;;
                esac
            done

            # If the first argument ended up empty, we have no match
            shift
            ;;
    esac

    # We have a match; try and change into it
    command cd -- "$1"
}