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.
ionice 似乎不适用于别名。我正在使用zsh,我没有测试bash。例如
$ alias foo='ls -l' $ ionice -c2 -n2 foo ionice: 执行 foo 失败: 没有这样的文件或目录
为什么 ionice 不能识别别名,我怎样才能让它识别别名?
您需要使用全局别名:
alias -g foo='ls -l'