aboutsummaryrefslogtreecommitdiff
path: root/sh/profile
Commit message (Collapse)AuthorAgeFilesLines
* Explicitly unset variables in profileTom Ryder2013-09-151-1/+1
|
* Break editor/pager setup into subfileTom Ryder2013-09-151-9/+0
|
* Tidier quoting for PATH logicTom Ryder2013-09-151-1/+1
|
* Handle empty .bashrc.d/.profile.d dirsTom Ryder2013-09-021-1/+1
|
* Better var names for subfile config sourcingTom Ryder2013-08-201-3/+3
|
* Fix a few variable contamination issuesTom Ryder2013-08-201-0/+1
|
* More conservative expansion for dotfile pathsTom Ryder2013-08-201-3/+3
|
* Remove unnecessary quoting in simple assignmentsTom Ryder2013-08-201-1/+1
|
* More thorough quotingTom Ryder2013-08-051-2/+2
|
* Improve comments on shell scriptsTom Ryder2013-07-311-2/+2
|
* Keep export calls separate from definitionsTom Ryder2013-07-311-3/+5
|
* Use standard structure for if/for in shellTom Ryder2013-07-311-5/+5
| | | | | | | | | | | | | | | | | | | Mostly for clarity reasons; using this syntax: if [ condition ]; then commands fi As opposed to: if [ condition ] then commands fi Or: [ condition ] && command
* Tidier layout, start using .bash_profile againTom Ryder2013-07-121-3/+0
| | | | Shouldn't refer to Bash stuff in Bourne shell profile
* Nice syntax for ANDTom Ryder2013-06-251-1/+1
|
* Remove Bashism from Bourne shell profileTom Ryder2013-06-241-1/+1
|
* Massive overhaul of structure for Bash filesTom Ryder2013-06-201-0/+23
* No longer using .bash_logout * No longer using .bash_profile, using POSIX-compliant .profile * instead; in particular, moved most of environment settings into .profile * Moved some of the separable functionality of both .profile and .bashrc into subdirectories (some scripts shared, some not) * Tidied implementation of ls/grep aliases * Updated install script to reflect all of the above