如何过滤掉 tcsh 历史记录中的相同命令
how can I filter out same commands in tcsh history
我正在使用 tcsh。但是对存储在历史文件中的相同命令感到恼火。我必须多次使用向上箭头来绕过同一个命令,非常不方便。
任何人都可以帮助解决这个不便。
这里有 histdup
设置;来自 tcsh(1)
:
histdup (+)
Controls handling of duplicate entries in the history list. If
set to `all' only unique history events are entered in the
history list. If set to `prev' and the last history event is
the same as the current command, then the current command is
not entered in the history. If set to `erase' and the same
event is found in the history list, that old event gets erased
and the current one gets inserted. Note that the `prev' and
`all' options renumber history events so there are no gaps.
我正在使用 tcsh。但是对存储在历史文件中的相同命令感到恼火。我必须多次使用向上箭头来绕过同一个命令,非常不方便。 任何人都可以帮助解决这个不便。
这里有 histdup
设置;来自 tcsh(1)
:
histdup (+)
Controls handling of duplicate entries in the history list. If
set to `all' only unique history events are entered in the
history list. If set to `prev' and the last history event is
the same as the current command, then the current command is
not entered in the history. If set to `erase' and the same
event is found in the history list, that old event gets erased
and the current one gets inserted. Note that the `prev' and
`all' options renumber history events so there are no gaps.