在这种特殊情况下,我想在Bash中添加一个确认
Are you sure? [Y/n]
用于Mercurial的hg push ssh://username@www.example.com//somepath/morepath
,它实际上是一个别名。是否有一个可以添加到别名的标准命令来实现它?
原因是hg push
和hg out
听起来很相似,有时当我想要hgoutrepo
时,我可能会意外地键入hgpushrepo
(两者都是别名)。
更新:如果它可以是类似于内置命令的另一个命令,比如:confirm && hg push ssh://...
,那就太好了……只是一个命令,可以要求yes
或no
,如果yes
继续其余的。