aboutsummaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-09 10:54:46 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-09 10:54:46 +1200
commitf8b87c2f682baa46b094bb1b1a5e31da645db313 (patch)
tree0467fc63ac43578e92e0ddd049cb38f1323409ec /README.markdown
parentAdd trailing full stops to README (diff)
downloaddotfiles-f8b87c2f682baa46b094bb1b1a5e31da645db313.tar.gz
dotfiles-f8b87c2f682baa46b094bb1b1a5e31da645db313.zip
Add () suffix to function names
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown24
1 files changed, 12 insertions, 12 deletions
diff --git a/README.markdown b/README.markdown
index 9050e398..f48854ea 100644
--- a/README.markdown
+++ b/README.markdown
@@ -184,18 +184,18 @@ I also add completions for my own scripts and functions where useful.
There are a few other little tricks in `bash/bashrc.d`, including:
-* `bd` changes into a named ancestor of the current directory.
-* `fnl` runs a command and save its output and error into temporary files.
-* `hgrep` searches `$HISTFILE`.
-* `keep` stores ad-hoc shell functions and variables.
-* `mkcd` creates a directory and changes into it.
-* `path` manages the contents of `PATH` conveniently.
-* `pd` changes to the argument's parent directory.
-* `readv` prints names and values from `read` calls to `stderr`.
-* `readz` is an alias for `read -d '' -r`.
-* `scr` creates a temporary directory and changes into it.
-* `sd` changes into a sibling of the current directory.
-* `ud` changes into an indexed ancestor of a directory.
+* `bd()` changes into a named ancestor of the current directory.
+* `fnl()` runs a command and save its output and error into temporary files.
+* `hgrep()` searches `$HISTFILE`.
+* `keep()` stores ad-hoc shell functions and variables.
+* `mkcd()` creates a directory and changes into it.
+* `path()` manages the contents of `PATH` conveniently.
+* `pd()` changes to the argument's parent directory.
+* `readv()` prints names and values from `read` calls to `stderr`.
+* `readz()` is an alias for `read -d '' -r`.
+* `scr()` creates a temporary directory and changes into it.
+* `sd()` changes into a sibling of the current directory.
+* `ud()` changes into an indexed ancestor of a directory.
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