diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-06-10 00:54:34 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-06-10 00:54:34 -0400 |
| commit | 8458bf43fe0f759278d7cda95579dc1d3d61fe50 (patch) | |
| tree | 94188a9553c3a9eb3d9f8480b67328b092cf1f71 | |
| parent | 9b38ad07a1b153a4dfd6a4f8ec253bbb4b48f310 (diff) | |
Fix issue where `tput cvvis` was failing and causing the command to
fail
| -rwxr-xr-x | scripts/bbkeys | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bbkeys b/scripts/bbkeys index 644e007..4a73ef9 100755 --- a/scripts/bbkeys +++ b/scripts/bbkeys @@ -253,8 +253,8 @@ bbcmd fg ## Section: Viewing Options ## s: Sort by... -sort="$(bbask -1 "Sort (n)ame (s)ize (m)odification (c)reation (a)ccess (r)andom (p)ermissions: ")" -bbcmd sort:"~$sort" +new_sort="$(bbask -1 "Sort (n)ame (s)ize (m)odification (c)reation (a)ccess (r)andom (p)ermissions: ")" +bbcmd sort:"~$new_sort" ## ---,#: Set columns columns="$(bbask "Set columns (*)selected (a)ccessed (c)reated (m)odified (n)ame (p)ermissions (r)andom (s)ize: ")" |
