Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在具有 tar.uue (genscanlinux.tar.uue) 扩展名的 linux 平台上安装一个工具。我无法解压缩它。请告诉我如何解压缩并安装它?提前致谢 :)
要解码扩展名为 .uue 的文件,请使用以下命令:
uudecode genscanlinux.tar.uue
在此之后,您将获得 genscanlinux.tar。您可以使用以下命令解压缩它:
tar -zxvf genscanlinux.tar
在此之后,您将在当前目录中获得提取的文件。 希望这会有所帮助。