Pushd popd 명령어 사용법
pushd 와 popd 는 stack 에 현재 dir 부터 차례로 dir 을 저장하고 꺼내어 사용하는 명령어 입니다.
jason@isPC:~$ pushd dirA
~/dirA ~
jason@isPC:~/dirA$ pushd /
/ ~/dirA ~
jason@isPC:/$ pushd ~/dirA/dirB/
~/dirA/dirB / ~/dirA ~
순서대로 dirA , /, dirB 를 push 하면 pushd 를 실행 할 때마다 해당 dir로 이동하며 history가 하나씩 저장이 됩니다.
stack 에 저장 되는 것이므로 LIFO (Last in First out)으로 처리됩니다.
jason@isPC:~/dirA/dirB$ popd
/ ~/dirA ~
jason@isPC:/$ popd
~/dirA ~
jason@isPC:~/dirA$ popd
~
pushd 와 popd 를 사용하면 shell script 를 사용하며 dir 간 이동을 좀 더 쉽게 할 수 있습니다.
이상 Pushd popd 명령어 사용법에 대해 알아보았습니다.
Ubuntu 에서 Secure Shell ssh terminal 사용시 id 지정하기와 ssh 명령어 option (0) | 2014.02.07 |
---|---|
ssh pub key 서버 로그인 간단히 하기 및 ssh key 생성 및 등록 방법 (0) | 2014.02.06 |
grep 의 종류와 사용법 (egrep fgrep) (0) | 2013.10.22 |
Gerrit & LDAP & Active Directory 설정 cofiguration (0) | 2013.09.08 |
국제 표준 국가 코드 (Country codes in ISO 3166) (0) | 2013.08.23 |