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'