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.
如何在我的中创建别名,.bashrc以便我可以运行两个带参数的命令?
.bashrc
例如,编译源代码并运行。
gcc-run -lm example.c
会跑
gcc -lm example.c ./a.out
我发现的最接近的是这个问题,但它没有任何论据。
如果要传递参数,则不能使用别名。您需要使用 shell 函数。听起来你想要类似的东西
gcc-run () { gcc "$@" ./a.out }