Commit graph

5 commits

Author SHA1 Message Date
Justin Lecher
7fe27fc693 Use posix compliant tail syntax
homebrew allows using gnu coreutils on MacOS. Therefore we should
comply with posix standards

```bash
$ mas help | tail +3
tail: cannot open '+3' for reading: No such file or directory
$ type tail
tail is /usr/local/opt/coreutils/libexec/gnubin/tail
```

Switching to posix compliant `-n` syntax is compatible with UNIX and GNU tooling.

```bash
$ mas help | /usr/bin/tail -n +3 | wc -l
18
$ mas help | tail -n +3 | wc -l
18
```
2021-11-01 22:02:12 -07:00
Chris Araman
64695e2457
📜 Lint 2021-03-28 14:12:02 -07:00
Lawrence
f001450395 Seriously more interactive fish completions 2019-05-23 12:08:40 -04:00
Alexander Fomin
e71deef7a8 📺 Add completions for fish shell 2019-01-31 22:16:42 +00:00
Adam Karim
dd2f480187
Adding simple bash completion 2018-07-06 20:19:25 -07:00