非対話型シェル拡張エイリアス

非対話型シェル拡張エイリアス

次のコマンドを実行すると、ホスティングアカウントのエイリアスを拡張できません。

ssh user@server "bash -c \"alias\""

私の.bashrcファイルは次のとおりです。

echo .bashrc
# .bashrc

shopt -s expand_aliases

# Source global definitions (commenting this out does nothing)
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

# User specific aliases and functions
alias php="php55"
alias composer="php ~/bin/composer.phar"

上記のsshコマンドを実行すると、「.bashrc」がエコーされていることがわかります。しかし、エイリアスを実行しようとすると、何も得られません。

「bash -ic」を試してみることができますが、実際には簡単に変更できないスクリプトにあり、これがうまくいかない理由を知りたいです。

出力 ssh user@server "bash -c \"shopt\""

.bashrc
autocd          off
cdable_vars     off
cdspell         off
checkhash       off
checkjobs       off
checkwinsize    off
cmdhist         on
compat31        off
compat32        off
compat40        off
dirspell        off
dotglob         off
execfail        off
expand_aliases  off
extdebug        off
extglob         off
extquote        on
failglob        off
force_fignore   on
globstar        off
gnu_errfmt      off
histappend      off
histreedit      off
histverify      off
hostcomplete    on
huponexit       off
interactive_comments    on
lithist         off
login_shell     off
mailwarn        off
no_empty_cmd_completion off
nocaseglob      off
nocasematch     off
nullglob        off
progcomp        on
promptvars      on
restricted_shell        off
shift_verbose   off
sourcepath      on
xpg_echo        off

出力 ssh user@server "bash -c \"echo $SHELL\""

.bashrc
/bin/bash

ベストアンサー1

bash(1)マニュアルページから:

シェルが非対話型の場合、Shoptを使用してExpand_aliasesシェルオプションを設定しない限り、エイリアスは拡張されません(以下のSHELL BUILTIN COMMANDSの下のshoptの説明を参照)。

おすすめ記事