aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-04-02 15:35:31 +1300
committerTom Ryder <tom@sanctum.geek.nz>2015-04-02 15:35:31 +1300
commit8a1df304aa046c615b99d369254fade47853ecec (patch)
treeef6ea32f627edc6ab35996a1e149f9f1a858a11c /bash/bashrc.d
parentRemove the ~/.vimrc.local search (diff)
downloaddotfiles-8a1df304aa046c615b99d369254fade47853ecec.tar.gz
dotfiles-8a1df304aa046c615b99d369254fade47853ecec.zip
Move scp wrapper into its own file
Diffstat (limited to 'bash/bashrc.d')
-rw-r--r--bash/bashrc.d/ssh.bash9
1 files changed, 0 insertions, 9 deletions
diff --git a/bash/bashrc.d/ssh.bash b/bash/bashrc.d/ssh.bash
index 91d83e35..696e9b34 100644
--- a/bash/bashrc.d/ssh.bash
+++ b/bash/bashrc.d/ssh.bash
@@ -1,12 +1,3 @@
-# Wrap scp to check for missing colons
-scp() {
- if (($# >= 2)) && [[ $* != *:* ]] ; then
- printf 'scp: Missing colon, probably an error\n' >&2
- return 1
- fi
- command scp "$@"
-}
-
# Completion for ssh/sftp/ssh-copy-id with config hostnames
_ssh() {
local word=${COMP_WORDS[COMP_CWORD]}