소스 검색

add func __realpath

pull/1/head
10sr 12 년 전
부모
커밋
72568ce94f
1개의 변경된 파일17개의 추가작업 그리고 1개의 파일을 삭제
  1. +17
    -1
      bashrc

+ 17
- 1
bashrc 파일 보기

@@ -234,7 +234,7 @@ cd(){
__dirs_rm_dup(){
for d in "$@"
do
local next="$(realpath --strip "$d")"
local next="$(__realpath --strip "$d")"
for l in $(\dirs -v -l | cut -d "
" -f 2- | \grep -x " *[0-9]\+ \+${next}" | \grep -o "^ *[0-9]\+ " | tac)
do
@@ -243,6 +243,22 @@ __dirs_rm_dup(){
done
}

__realpath(){
if type realpath >/dev/null 2>&1
then
command realpath "$@"
else
while ! test -d $1
do
shift
done
local d="$OLDPWD"
command cd "$1"
echo "$PWD"
command cd "$d"
fi
}

dh(){
if test $# -eq 0
then


불러오는 중...
취소
저장