从 GitHub 下载、解压并运行文件

从 GitHub 下载、解压并运行文件

我对 Linux 还很陌生,我想知道如何通过命令行从 GitHub 版本下载 .zip 文件,例如https://github.com/用户名/repo/releases/download/ver/file.zip

然后将压缩文件夹解压到新目录,最后运行它。

wget https://github.com/username/repo/releases/download/ver/file.zip  // Downloading the file
sudo apt install unzip // Installing unzip
unzip file.zip // Unzipping the zipped file
sudo apt install mono-runtime // Installing mono-runtime (because the program is .NET)
cd Extracted // Going to the Extracted folder
mono File.exe // Running the file

这是正确的吗?或者有更好的方法吗?

相关内容