1 / 1

Directory 안전하게 옮기기

Directory 안전하게 옮기기. 만약에 /export/csk 이라는 디렉터리를 /tmp/csk 으로 옮기려면 mv 를 하면 간단하다 . 그러나 그냥 mv 를 쓰게 되면 파일의 퍼미션이 변경 될 수 있다 이런 경우 밑의 예제와 같이 한다

khanh
Download Presentation

Directory 안전하게 옮기기

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Directory 안전하게 옮기기 • 만약에 /export/csk 이라는 디렉터리를 /tmp/csk으로 옮기려면 mv를 하면 간단하다. • 그러나 그냥 mv를 쓰게 되면 파일의 퍼미션이 변경 될 수 있다 • 이런 경우 밑의 예제와 같이 한다 • 예1) # mkdir /tmp/csk # cd /export/csk # tar cf - * | ( cd /tmp/csk ; tar xf - ) 예2) # cd /export/csk # tar cvf - . | ( cd /tmp/csk ; tar xvf - )

More Related