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.
エイリアスコマンドが機能していません。たとえば、正しい構文に従っていると思います。
alias np='ls -la'
私もスピーチマークを試しました:
alias np="ls -la"
どちらの場合も、np への応答は次のとおりです。
np: Command not found.
ただし、引数なしで alias を実行すると、現在のエイリアスが一覧表示されます (レコード 'nl' はまだ一覧表示されていないため)。
csh を使用する場合、等号は使用できません。上記は次のように書く必要があります。
alias np "ls -la"