summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dot/bashrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/dot/bashrc b/dot/bashrc
index d45f398..bef8fc6 100644
--- a/dot/bashrc
+++ b/dot/bashrc
@@ -404,3 +404,9 @@ newfile()
404{ 404{
405 find . -maxdepth 1 -type f -printf "%T@ %f\0" | sort -z -k1,1 -r | head -z -n1 | cut -d' ' -f2 | xargs -0 printf %s 405 find . -maxdepth 1 -type f -printf "%T@ %f\0" | sort -z -k1,1 -r | head -z -n1 | cut -d' ' -f2 | xargs -0 printf %s
406} 406}
407
408local_bashrc=~/.bashrc.$(hostname)
409
410if [ -f "$local_bashrc" ]; then
411 . "$local_bashrc"
412fi