mirror of
https://github.com/sorin-ionescu/prezto.git
synced 2025-03-26 04:20:29 +08:00
14 lines
187 B
Plaintext
14 lines
187 B
Plaintext
|
#
|
||
|
# Changes the directory to the n previous one.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
|
|
||
|
if [[ "$1" == [[:digit:]]## ]]; then
|
||
|
builtin cd "+$1"
|
||
|
else
|
||
|
return 127
|
||
|
fi
|
||
|
|