aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-05-29 15:20:40 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-05-29 15:20:40 +1200
commit97c859ac02ac263a4a8034fee507b5b9b17d64c7 (patch)
treebce6a147c7f918682367bb777cc2ecc07bd89942
parentExit with 2 on usage errors like Bash builtins (diff)
downloaddotfiles-97c859ac02ac263a4a8034fee507b5b9b17d64c7.tar.gz
dotfiles-97c859ac02ac263a4a8034fee507b5b9b17d64c7.zip
Just found rem(1), don't need this now
-rw-r--r--README.markdown2
-rw-r--r--bash/bashrc.d/remind.bash5
2 files changed, 1 insertions, 6 deletions
diff --git a/README.markdown b/README.markdown
index 43dae299..e8405973 100644
--- a/README.markdown
+++ b/README.markdown
@@ -187,7 +187,7 @@ There are a few other little tricks in `bash/bashrc.d`, including:
I also wrap a few command calls with functions to stop me from doing silly
things that the commands themselves don’t catch. My favourite is the one that
stops me from calling `scp(1)` with no colon in either argument. I also do
-things like give default arguments to `remind(1)` and `pwgen(1)`.
+things like give default arguments to `pwgen(1)`.
### Testing
diff --git a/bash/bashrc.d/remind.bash b/bash/bashrc.d/remind.bash
deleted file mode 100644
index eaa724e0..00000000
--- a/bash/bashrc.d/remind.bash
+++ /dev/null
@@ -1,5 +0,0 @@
-# Default filename for remind(1) is ~/.reminders
-remind() {
- command remind "${@:-"$HOME"/.reminders}"
-}
-