aboutsummaryrefslogtreecommitdiff
path: root/sh/profile.d
Commit message (Collapse)AuthorAgeFilesLines
* OpenBSD TERM hack no longer neededTom Ryder2013-09-221-10/+0
|
* Chop off unicode suffix for OpenBSD TERM tooTom Ryder2013-09-151-1/+2
|
* Break editor/pager setup into subfileTom Ryder2013-09-152-0/+9
|
* Degrade TERM for OpenBSD systemsTom Ryder2013-09-151-0/+9
|
* Remove unnecessary quoting in simple assignmentsTom Ryder2013-08-201-1/+1
|
* Avoid whichcraftTom Ryder2013-08-131-1/+1
|
* More thorough quotingTom Ryder2013-08-051-2/+2
|
* Restore stderr redirection for command -vTom Ryder2013-08-021-2/+2
| | | | | Some older versions of Bash seem to spit out "not found" errors for command -v on stderr
* Improve comments on shell scriptsTom Ryder2013-07-311-1/+3
|
* Don't use backticks for command substitutionTom Ryder2013-07-311-2/+2
| | | | | | I thought the $( ) syntax wasn't defined by POSIX, but it is, and it works in basically every modern Bourne shell including dash and ksh. As it's much more readable and easier to nest I'll prefer it here.
* Keep export calls separate from definitionsTom Ryder2013-07-311-1/+2
|
* Use standard structure for if/for in shellTom Ryder2013-07-312-6/+7
| | | | | | | | | | | | | | | | | | | Mostly for clarity reasons; using this syntax: if [ condition ]; then commands fi As opposed to: if [ condition ] then commands fi Or: [ condition ] && command
* Explicitly set timezone for profilesTom Ryder2013-07-031-0/+3
|
* Discard stderr from command callsTom Ryder2013-06-241-2/+2
| | | | | Looks like older versions of Bash emit well-intended error messages if the command is not found that newer ones don't
* Sharing keychain(1) profile scriptTom Ryder2013-06-241-0/+6
| | | | | | Designed to be a quiet no-op on systems where keychain(1) is unavailable, and not to bleat about missing keys, trying the three default ones
* Add one profile.d scriptTom Ryder2013-06-201-0/+9
Mostly because git doesn't do empty dirs