我知道Esc +。给出最后一个命令的最后一个参数。
但我对最后一个命令的第一个参数感兴趣。 是否有一个键绑定来这样做?
在同一行中,是否有从最后一个命令中获取第n个参数的通用方法? 我知道在bash脚本中,您可以使用$0,$1等,但这些在命令行上不起作用。
同样,如果遍历前面命令的第0个参数,就像我们连续按Esc +对最后一个参数所做的那样,会怎么样呢?
我知道Esc +。给出最后一个命令的最后一个参数。
但我对最后一个命令的第一个参数感兴趣。 是否有一个键绑定来这样做?
在同一行中,是否有从最后一个命令中获取第n个参数的通用方法? 我知道在bash脚本中,您可以使用$0,$1等,但这些在命令行上不起作用。
同样,如果遍历前面命令的第0个参数,就像我们连续按Esc +对最后一个参数所做的那样,会怎么样呢?
当前回答
要使用第一个参数,可以使用!^或!:1
例子:
$ echo a b c d e
a b c d e
$ echo !^
echo a
a
$ echo a b c d e
a b c d e
$ echo !:1
echo a
a
既然你的问题是关于使用其他论点的,这里有一些有用的论点:
!^ first argument
!$ last argument
!* all arguments
!:2 second argument
!:2-3 second to third arguments
!:2-$ second to last arguments
!:2* second to last arguments
!:2- second to next to last arguments
!:0 the command
!! repeat the previous line
前四种形式更常用。形式!:2-有点违反直觉,因为它不包括最后一个参数。
其他回答
我非常喜欢@larsmans的回答,所以我必须多学一些。添加这个 回答帮助其他人找到手册页部分,并知道要做什么 谷歌:
$ man -P 'less -p ^HISTORY\ EXPANSION' bash
<...>
Word Designators
Word designators are used to select desired words from the event.
A : separates the event specification from the word designator.
It may be omitted if the word designator begins with a ^, $, *, -,
or %. Words are numbered from the beginning of the line, with the
first word being denoted by 0 (zero). Words are inserted into the
current line separated by single spaces.
0 (zero)
The zeroth word. For the shell, this is the command word.
n The nth word.
^ The first argument. That is, word 1.
$ The last argument.
% The word matched by the most recent ‘?string?’ search.
x-y A range of words; ‘-y’ abbreviates ‘0-y’.
* All of the words but the zeroth.
This is a synonym for ‘1-$’.
It is not an error to use * if there is just one word in
the event; the empty string is returned in that case.
x* Abbreviates x-$.
x- Abbreviates x-$ like x*, but omits the last word.
If a word designator is supplied without an event
specification, the previous command is used as the event.
$获取上一个命令行参数的最后一个元素。
就像M-。(meta-dot或esc-dot或alt-dot)是readline函数yank-last-arg, M-C-y (meta-control-y或esc-ctrl-y或ctrl-alt-y)是readline函数yank-n -arg。在不指定n的情况下,它会提取上一个命令的第一个参数。
要指定参数,请按Escape +数字或按住Alt +数字。您可以执行Alt—开始指定一个负数,然后释放Alt并按下数字(这将从参数列表的末尾开始计数。
例子:
输入以下命令
$ echo a b c d e f g
a b c d e f g
现在在下一个提示符处,键入echo(后面有空格),然后
按Alt-Ctrl-y,你现在会看到:
$ echo a
不按Enter,执行以下操作
按Alt-3 Alt-Ctrl-y
按Alt- 2 Alt- ctrl -y
现在你会看到:
$ echo ace
顺便说一下,你可以通过选择参数0来把echo放在行上:
按Alt-0 Alt-Ctrl-y
编辑:
要回答你在原文中添加的问题:
您可以按Alt-0,然后反复按Alt-。步进执行前面的命令(arg 0)。类似地,Alt—然后重复Alt-。将允许您逐步检查之前的倒数第二个参数。
如果对历史上的某一行没有适当的论证,就会敲响警钟。
如果有一个您经常使用的特定组合,您可以定义一个宏,这样一次击键就可以执行它。本例将通过按Alt-Shift-Y收回前面命令中的第二个参数。您可以选择任何可用的击键,而不是这个。您可以重复按下该键来执行先前的操作。
要尝试一下,在Bash提示符下输入宏:
bind '"\eY": "\e2\e."'
要使它持久,将这一行添加到~/。inputrc文件:
"\eY": "\e2\e."
不幸的是,这似乎不适用于参数0或负参数号。
^将得到第一个参数,!$将得到最后一个参数,!:n将得到第n个元素。
在接受的答案后面描述的方法对我来说也适用于第0个参数。在我的~/.inputrc中有这些行:
"\en": "\e0\e."
"\em": "\e1\e."
"\e,": "\e2\e."
\ e2 \ e。与\e2\e\C-y相比,它的优点是,如果重复按下它,它会循环执行前面的命令,而不是多次插入前面命令的第二个参数。
要插入之前的整个命令,可以输入!!\e^。\e^是history-expand-line。