$ $(echo {a..z})
CTRL + ALT + e
$ a b c d e f g h i j k l m n o p q r s t u v w x y z
Observe que ele expandirá todas as expansões na linha de comando. Não importa onde o cursor é colocado.
Com este comando (e a=this; b=that
):
$ echo "$a"; $(echo {a..m}); echo "$b"
Isso será expandido:
$ echo this; a b c d e f g h i j k l m ; echo that
De man bash
:
shell-expand-line (M-C-e)
Expand the line as the shell does. This performs alias and history expansion as well as all of the shell word expansions. See HISTORY EXPANSION below for a description of history expansion.