如何在下一个 bash 提示符上准备用户命令?

如何在下一个 bash 提示符上准备用户命令?

假设我要查找的命令是prepare

如果我启动:

$ prepare git commit

然后它只会插入git commit到我的下一个提示中(但不会执行它):

$ prepare git commit
$ git commit # <-- I didn't write this, the prepare command did it

我正在寻找该prepare命令的可能实现。

使用纯粹的程序是否可行bash或者是否需要任何第三方程序?

你能举个例子吗?

相关内容