summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-02-18 10:20:27 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-02-18 10:20:27 -0700
commit389d6fad6deee18b6631df26b008ac8e6ea123c7 (patch)
tree2c00b4e377c77f9e3d60d23d9b55da73200e0311 /.bashrc
parentdd039b97468fce4ef1e8455318658741f54f6ce8 (diff)
downloaddotfiles-389d6fad6deee18b6631df26b008ac8e6ea123c7.tar.gz
add dak shell alias
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc7
1 files changed, 7 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
index 57c817da..e8a4caf4 100644
--- a/.bashrc
+++ b/.bashrc
@@ -296,3 +296,10 @@ if [ -d "/srv/ftp-master.debian.org" ]; then
fi
}
fi
+
+# not ftp-master.debian.org
+
+if ! command -v dak >/dev/null; then
+ # this is useful for processing removal requests
+ alias dak="ssh ftp-master.debian.org dak"
+fi