Commit Diff


commit - a204e344104edddd4b1dadb3b8acbf8d0db00a12
commit + 84181fffa57420064b6777b3ad66c5fbc5e79aff
blob - 2e238f25e7a4364fa7f254b8cb35ce8e40771d75 (mode 644)
blob + 31251a1aebddf34120fad9f1e9425c7991ccfd76 (mode 755)
--- .local/bin/uloc
+++ .local/bin/uloc
@@ -15,4 +15,4 @@ else
 	for pattern; do
 		find . -name "$pattern"
 	done
-fi | xargs cat | sort -u | wc -l
+fi | xargs cat | LC_ALL=C sort -u | wc -l
blob - 1bcb0838976ea7a13d81fe5c7058d4e55504aac9
blob + 25355928d12eb0c0ced83ec474ff22f26d00dab4
--- .profile
+++ .profile
@@ -8,7 +8,7 @@
 # set paths by testing if they exist then appending them
 # _PATH=$PATH PATH=
 path() { test -d "$1" && PATH="${PATH}${PATH:+:}${1}"; }
-for prefix in '' /usr/local /opt/local /usr ~/.local; do
+for prefix in '' /usr/local /opt/local /usr $HOME/.local; do
 	path "${prefix}/sbin"
 	path "${prefix}/bin"
 done