diff options
author | Thomas Haller <thaller@redhat.com> | 2017-09-07 14:45:25 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2017-09-07 14:45:26 +0200 |
commit | d4a5e2b1c8664985438e796fa55198b64e301501 (patch) | |
tree | 7fdcf452d59dabf59619c90640a199167c9db9fc | |
parent | 83e27640507e488534ce3315f931cdea3126faa1 (diff) |
contrib/NM-log: don't run less with --quit-on-intr argument
I find it annoying when ^C exits less and it prompts me to often
do `NM-log | less -R` instead.
-rwxr-xr-x | contrib/scripts/NM-log | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/scripts/NM-log b/contrib/scripts/NM-log index 129d5dd37..82fdf4ba2 100755 --- a/contrib/scripts/NM-log +++ b/contrib/scripts/NM-log @@ -60,7 +60,7 @@ NM-log() { fi ) | \ NM-colorize | \ - LESS=FRSXMK exec less -R + LESS=FRSXM exec less -R } if [[ "$NM_not_sourced" != "" ]]; then |