我想date +"%m %d %y"
在 tmux.conf 文件中设置一个变量,将其设置为set-option -g set-titles-string
.如何将 shell 命令的输出值存储在 tmux.conf 中并稍后取消引用?
答案1
我需要做类似的事情,并且能够弄清楚如何做。以OP想要的为例,它会是这样的:
curr_date='#(date +"%m %d %y")'
set-option -g set-titles-string $curr_date
我想date +"%m %d %y"
在 tmux.conf 文件中设置一个变量,将其设置为set-option -g set-titles-string
.如何将 shell 命令的输出值存储在 tmux.conf 中并稍后取消引用?
我需要做类似的事情,并且能够弄清楚如何做。以OP想要的为例,它会是这样的:
curr_date='#(date +"%m %d %y")'
set-option -g set-titles-string $curr_date