Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 bash 脚本中使用!!, !$,^abc^cde等别名。可悲的是,我似乎无法让它们在脚本中工作(它们在交互模式下工作得很好),有人知道问题是什么吗?如果无法做到这一点,您是否知道任何可以在 bash 脚本中使用的类似方式的操作?
!!
!$
^abc^cde
用于set +o histexpand在非交互式 bash shell 中启用历史扩展。
set +o histexpand