Optionally source a .localrc file too.
David Blume

David Blume commited on 2016-09-25 13:26:27
Showing 1 changed files, with 4 additions and 0 deletions.

... ...
@@ -55,3 +55,7 @@ alias findincppfiles="find . -type f \( -name \*.cpp -or -name \*.c \) -print0 |
55 55
 alias findinhppfiles="find . -type f \( -name \*.hpp -or -name \*.h \) -print0 | xargs -0 grep -nI"
56 56
 
57 57
 alias clip="expand | cut -b1-\$COLUMNS"
58
+
59
+if [ -f .localrc ]; then
60
+    source .localrc
61
+fi
58 62