aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/ls.sh
Commit message (Collapse)AuthorAgeFilesLines
* Remove disused $OS env var and switchTom Ryder2022-07-291-10/+0
|
* Force unwanted --quoting-style option to ls(1) offTom Ryder2020-04-301-0/+4
|
* Fix up a few cosmetic shell anti-patternsTom Ryder2019-03-291-1/+1
|
* Refactor some conditionalsTom Ryder2018-12-111-16/+20
|
* Merge branch 'master' into port/bsd/freebsdTom Ryder2017-07-281-1/+1
|\
| * Gracefully handle two failed tput color callsTom Ryder2017-07-111-1/+1
| |
* | Merge branch 'master' into port/bsd/freebsdTom Ryder2017-05-191-4/+4
|\|
| * Use more logical ~/.cache subpathTom Ryder2017-04-121-4/+4
| |
* | Merge branch 'master' into port/bsd/freebsdTom Ryder2017-04-071-2/+4
|\|
| * Make -x in ls() conditional on terminal outputTom Ryder2017-04-061-2/+4
| | | | | | | | Mimics behaviour of GNU ls(1) and probably other implementations too
* | Add -D option for FreeBSD ls()Tom Ryder2017-01-251-3/+7
| |
* | Add FreeBSD -G to ls() wrapperTom Ryder2017-01-251-0/+6
|/ | | | Not sure this is the correct approach yet. I'm not sure I like the CLICOLOR environment variable.
* Make some comments less uselessTom Ryder2017-01-111-1/+1
|
* Unset some more stupid variablesTom Ryder2017-01-111-2/+2
|
* Unset stupid GNU options to grep(1)/ls(1)Tom Ryder2017-01-111-0/+3
|
* Have ls() func undo aliases in its wayTom Ryder2017-01-111-0/+4
|
* Group single-letter ls(1) optsTom Ryder2017-01-111-8/+4
|
* Use POSIX-compatible versions of ls(1) optsTom Ryder2017-01-111-15/+10
|
* Correct a commentTom Ryder2016-09-181-2/+2
|
* Use more compatible block size for ls(1)Tom Ryder2016-08-311-1/+1
| | | | | Ancient GNU ls(1) accepts this even if it doesn't use it in the same way a more modern one does (requiring -S to show the blocks used).
* Switch ls()/readline to horizontal list/completeTom Ryder2016-08-251-0/+4
| | | | <https://github.com/izabera/libash/blob/9e709a56a148b4311792cc66cd21b61a73434573/extras/sample_inputrc#L33>
* Force --hide-control-chars on ls(1) if availableTom Ryder2016-08-241-0/+6
| | | | | I prefer it to literal or C-style escaping representations, and ls(1) isn't for scripting output anyway.
* Adjust ordering of ls() and grep() optionsTom Ryder2016-08-211-10/+11
|
* Clean up/extend grep()/ls() extensionTom Ryder2016-08-211-0/+12
|
* Port grep() and ls() to POSIX shTom Ryder2016-08-181-0/+15
Check capabilities of wrapped programs at runtime, not declaration time. Also do away with the silly GREP_COLORS and GREP_OPTS variables. Considering doing the same with LS_COLORS.