.tar
명령을 사용하여 파일을 생성할 때 tar
특정 디렉터리 계층 구조를 파일에 추가하려면 어떤 옵션을 사용해야 합니까?
예를 들어:
Test_File.tar
|__ MAIN
|__ SUB1
|__ Process.txt
답변1
매뉴얼 상단에서:
Examples:
tar -cf archive.tar foo bar # Create archive.tar from files foo and bar.
그래서:
tar cf tarfile.tar directory-to-tar
참고: Unix에서 디렉토리는 파일이고 다른 많은 것들도 마찬가지입니다. 디렉토리에 있으면 파일 이름이 있고 파일입니다.