yui*_*nnu 18
是的,您可以运行:
tar -xvf myfile.tar
Run Code Online (Sandbox Code Playgroud)
对于.tar.gz,您可以运行:
tar -xzvf myfile.tar.gz
Run Code Online (Sandbox Code Playgroud)
如果要解压缩到cwd以外的任何目录,请使用-C。例如:
tar -xvf myfile.tar -C somedirectory
Run Code Online (Sandbox Code Playgroud)
如果您想进一步做任何事情,建议您阅读tar的手册页:
man tar
Run Code Online (Sandbox Code Playgroud)