我需要运行以下命令:
SOME_OTHER_COMMAND | awk '{system("MY_BASH_PROFILE_ALIAS some stuff "$1" some other stuff")}'
但是当运行上面我得到以下错误:
sh: MY_BASH_PROFILE_ALIAS: command not found
有没有办法运行我位于 awk 函数中alias
的位置?或者有其他方法可以达到同样的效果吗?.bash_profile
system
我需要运行以下命令:
SOME_OTHER_COMMAND | awk '{system("MY_BASH_PROFILE_ALIAS some stuff "$1" some other stuff")}'
但是当运行上面我得到以下错误:
sh: MY_BASH_PROFILE_ALIAS: command not found
有没有办法运行我位于 awk 函数中alias
的位置?或者有其他方法可以达到同样的效果吗?.bash_profile
system