Executa o alias após a criação [fechado]

0

alias xxx=echo && xxx ok não funciona, porque o alias não está disponível após && . Mas um código de linha é melhor para minha tarefa.

Como defino alias e uso na mesma linha no bash?

    
por zored 02.09.2017 / 15:29

2 respostas

4

Do manual bash :

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.

Isso também é verdade em vários outros shells.

    
por 02.09.2017 / 16:30
1

Você pode contornar a limitação do shell fazendo isso:

eval 'alias xxx=echo
xxx ok'
    
por 02.09.2017 / 20:52

Tags