linux tar

 

TAR(1)                           User Commands(用户命令)                          TAR(1)

 

NAME

       tar - manual page for tar 1.23(tar 1.23指南)

 

SYNOPSIS(概要)

       tar [OPTION...] [FILE]...

 

DESCRIPTION

       GNU ‘tar’ saves many files together into a single tape or disk archive,

       and can restore individual files from the archive.(tar命令保存很多文件到一个单独的命令行或者是归档文件,能从归档文件中恢复每个文件)

 

EXAMPLES

       tar -cf archive.tar foo bar

              # Create archive.tar from files foo and bar.(把文件foo和bar打包成archive.tar)

 

       tar -tvf archive.tar

              # List all files in archive.tar verbosely.(把执行命令的过程也输出来,列出archive.tar中的所有文件)

 

       tar -xf archive.tar

              # Extract all files from archive.tar.(从archive.tar提取处所有的文件)

 

              Main operation mode:(主要的操作模式)

 

       -A, --catenate(连接), --concatenate(连结)

              append tar files to an archive(附加tar文件到归档文件中)

 

       -c, --create(这两种写法都是可以的)

              create a new archive(创建一个新的归档文件)

 

       -d, --diff, --compare

              find differences between archive and file system(找出归档文件和文件系统的不同地方)

 

       --delete

              delete from the archive (not on mag tapes!)(从归档文件中删除,不会有命令行信息提示)

 

       -r, --append

              append files to the end of an archive(添加文件到归档文件中)

 

       -t, --list

              list the contents of an archive(列出归档文件的内容)

 

       --test-label(不知道用途)

              test the archive volume label and exit(测试归档文件的磁盘标签然后退出)

 

       -u, --update(不知道怎么用)

              only append files newer than copy in archive(只添加比归档文件中的文件要新的文件)

 

       -x, --extract, --get

              extract files from an archive(从归档文件中提取出来)

 

       -C, --directory=DIR(不知道书写格式)

              change to directory DIR

 

       -f, --file=ARCHIVE

              use archive file or device ARCHIVE(用归档文件或者是ARCHIVE设备,意思就是说打包成归档文件)

 

       -j, --bzip2

              filter the archive through bzip2(调用bzip2命令压缩或解压归档文件)

 

        -J, --xz

              filter the archive through xz   (调用xz命令压缩或解压归档文件)

 

 

       -p, --preserve-permissions(保留权限)

              extract  information  about  file permissions (default for supe-

              ruser)(提取处文件权限的信息)

 

       -v, --verbose

              verbosely list files processed(详细地列出文件的执行过程)

 

       -z, --gzip

              filter the archive through gzip(调用gzip命令压缩或解压归档文件)

 

Operation modifiers:

       --check-device

              check   device   numbers   when  creating  incremental  archives

              (default)

 

       -g, --listed-incremental=FILE

              handle new GNU-format incremental backup

 

       -G, --incremental

              handle old GNU-format incremental backup

 

 

你可能感兴趣的:(linux,tar)