화일개수
ls -al *.xml | wc -l서브디렉토르 파일까지 조회
ls -aiRlps
ps -ef // 전체보기디렉토리명 만 출력
ps -ef | grep 유저 // 유저별 ps 보기
ps -f -U 유저 -u 유저
$ ls -al | grep "^d"특정 디렉토리 만 삭제
find . -name "test" -type d -exec rm -rf {} \;tar
$ tar cvfz cmn.tar.gz ./community링크걸기
$ tar xfz cmn.tar.gz -C ./community
# ln -s /xxx /rrrr
: /xxx 는 원본소스
: 심볼릭링크
ex) ln -s /usr/local/apache-ant-1.6.2 /usr/local/ant
※ 경로는 절대경로를 쓴다.
TAG linux
View Comments,
Trackbacks
댓글을 달아 주세요