web-dev-qa-db-ja.com

nanoが検索履歴を保持しないようにする

最近、nanoを使用してファイル内の文字列を検索すると、検索がこのファイルに保存されることに気付きました。

~/.nano_history

しかし、これは必要ではなく、私はこの機能が必要ないので、検索履歴をファイルに書き込まないように無効にする方法はありますか?


OS情報:

Description:    Ubuntu 15.04
Release:    15.04

パッケージ情報:

nano:
  Installed: 2.2.6-3
  Candidate: 2.2.6-3
  Version table:
 *** 2.2.6-3 0
        500 http://gb.archive.ubuntu.com/ubuntu/ vivid/main AMD64 Packages
        100 /var/lib/dpkg/status
2
user364819

ファイルを開く/etc/nanorc(実行Sudo nano /etc/nanorc)とコメントset historylog このセクションで:

## Enable ~/.nano_history for saving and reading search/replace strings.
set historylog

これは次のようになります。

## Enable ~/.nano_history for saving and reading search/replace strings.
# set historylog

その後、終了して保存すれば完了です。

2

ファイルをクリアしてから、次のコマンドを使用して、そのファイルに読み取り専用のアクセス許可を設定するのが、すばやく簡単な方法です。

echo "" > ~/.nano_history
chmod 400 ~/.nano_history
1
naisanza