Не может заставить expand_aliases вступать в силу

Я не могу заставить expand_aliases вступать в силу в ударе. Я попробовал много разных вещей, и ничто не работает.

Вот простой тестовый сценарий:

/bin/bash -c 'shopt -s expand_aliases; alias cdtmp="cd /tmp"; alias; cdtmp; pwd;'

И вывод:

$ /bin/bash -c 'shopt -s expand_aliases; alias cdtmp="cd /tmp"; alias; cdtmp; pwd;'
alias cdtmp='cd /tmp'
/bin/bash: cdtmp: command not found
/home/user

$ /bin/bash --version
GNU bash, version 3.2.25(1)-release (i686-redhat-linux-gnu)
Copyright (C) 2005 Free Software Foundation, Inc.

(Да, я использую shopt вместо-O опции колотить, только доказать, что это делается.)

Какие-либо идеи?

10
задан sachmet 23 March 2010 в 15:17
поделиться

1 ответ

Псевдонимы не доступны на той же строке или в той же функции, где они определены.

Со страницы Bash man:

       The rules concerning the definition and use  of  aliases  are  somewhat
       confusing.   Bash  always  reads  at  least  one complete line of input
       before executing any  of  the  commands  on  that  line.   Aliases  are
       expanded  when  a command is read, not when it is executed.  Therefore,
       an alias definition appearing on the same line as another command  does
       not  take  effect  until  the next line of input is read.  The commands
       following the alias definition on that line are not affected by the new
       alias.   This  behavior  is  also an issue when functions are executed.
       Aliases are expanded when a function definition is read, not  when  the
       function  is  executed,  because a function definition is itself a com‐
       pound command.  As a consequence, aliases defined in a function are not
       available  until  after  that function is executed.  To be safe, always
       put alias definitions on a separate line, and do not use alias in  com‐
       pound commands.

       For almost every purpose, aliases are superseded by shell functions.

В Справочном руководстве по Bash сказано

Почти для всех целей функции оболочки предпочтительнее, чем псевдонимы.

вместо последнего предложения выше [выделение мое]. Я считаю псевдонимы удобством командной строки, а не чем-то, что следует использовать в скриптах (включая те, которые состоят исключительно из bash -c однострочных слов).

12
ответ дан 4 December 2019 в 00:23
поделиться
Другие вопросы по тегам:

Похожие вопросы: