在 Xubuntu 16.04.6 上打开 xfce4 终端并运行“history”命令的快捷方式

在 Xubuntu 16.04.6 上打开 xfce4 终端并运行“history”命令的快捷方式

我正在尝试设置键盘快捷键来打开 xfce4-terminal 并运行历史记录(命令)并保持终端打开,但到目前为止无济于事,我阅读了一些教程然后尝试xfce4-terminal -e "/bin/bash -c 历史; 执行 bash",但什么都没发生(我注意到终端快速打开和关闭)如何让它工作?谢谢,vladi 操作系统:Xubuntu 16.04.6

答案1

您必须在非交互式 shell 中单独启用历史记录:

xfce4-terminal --hold -x bash -c 'HISTFILE=~/.bash_history; set -o history; history'

参考

答案2

你有没有尝试过--hold

根据他们的文档,这应该可行

xfce4-terminal --command "command_with_args" --hold

在你的情况下

xfce4-terminal --command "history" --hold

相关内容