每次要从源代码编译软件时,都需要在终端中输入一大堆命令。有没有办法使用图形用户界面来编译软件?
答案1
答案2
您可以编写一个 shell 脚本,在其中编写所有命令,然后每次想要使用它们时都执行该脚本:
脚本(位于名为“我的脚本") :
#!/bin/bash
Write your commands here
然后在终端中:
The Terminal :-$ chmod +x myscript.sh # Doing it once to have the right to execute it
The Terminal :-$ ./myscript.sh # Each time you want to run your commands
另请查看软件自动化工具像 GNU制作(以其著名的“生成文件“)。
网络上有大量的教程和示例向您展示如何编写 shell 脚本(“BASH 脚本”)或 makefile。
注意:它不是 Ubuntu 或 Linux 所特有的。