diff options
| author | Shohei YOSHIDA <syohex@gmail.com> | 2026-03-26 17:30:13 +0900 |
|---|---|---|
| committer | Shohei YOSHIDA <syohex@gmail.com> | 2026-03-26 17:30:13 +0900 |
| commit | 748efd8af7baa3c73d382d2a964e6dd9901d022f (patch) | |
| tree | 488c3536e30b83b685e891f831b487b817240916 | |
| parent | Merge pull request #1248 from zsh-users/cache-expiration-date (diff) | |
| download | zsh-completions-refactor_inxi.tar zsh-completions-refactor_inxi.tar.gz zsh-completions-refactor_inxi.tar.bz2 zsh-completions-refactor_inxi.tar.lz zsh-completions-refactor_inxi.tar.xz zsh-completions-refactor_inxi.tar.zst zsh-completions-refactor_inxi.zip | |
Use builtin generating sequential number instead of external commandsrefactor_inxi
`seq` is not installed on some BSD platforms by default.
| -rw-r--r-- | src/_inxi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ _inxi() { local curcontext="$curcontext" local ret=1 - local colors=($(seq 0 42)) + local -a colors=({0..42}) _arguments -C -s \ '(-A --audio)'{-A,--audio}"[Show Audio/sound card(s) information]" \ |
