TCSH履歴に特定のコマンドが保存されないように除外する方法は?

TCSH履歴に特定のコマンドが保存されないように除外する方法は?

TCSHにコマンドライン履歴を保存しますが、頻繁に使用する単純なコマンド(例: "exit"、 "cd")がレコードに含まれないようにしたい(記録は固定数のコマンドだけを保存するので保存したい)。便利なコマンド)。

現在の履歴ファイルに追加されていないコマンドのリストである「除外リスト」を指定する方法はありますか?これにより、記録で最も関連性の高いコマンドのみを維持し、記録を妨げたくないコマンドをフィルタリングできます。

ベストアンサー1

これはまさに望むものではありませんが、次のことが役に立ちます。

  histdup (+)
    Controls handling of duplicate entries in the history list.  If set to `all' only unique his-
    tory  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.

したがって、.tcshrcに "set histdup = all"を入れると、履歴にはまだマイナーなコマンドが表示されますが、各コマンドのインスタンスは1つだけインポートされ、少なくとも混乱を減らすことができます。

おすすめ記事