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.
1 つのエイリアスを持つライブラリ ファイルがあります。
$ cat mylib.sh alias mal='ls -l' $cat test.sh #!/bin/bash source mylib.sh mal $./test.sh ./test.sh: line 3: mal: command not found
何かご意見は?
非対話型シェルでエイリアスを実行するには、次を使用します
shopt -s expand_aliases
代わりに関数を使用することもできます:
mal() { ls -l } mal