From 883ee1ac2a744b3d5233e0bc8d7a4ce51e1847e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 23 May 2024 20:10:04 +0200 Subject: [PATCH] Add iscp analogous to issh --- zsh/zshrc.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/zshrc.j2 b/zsh/zshrc.j2 index 7e87bfd..20ba1d7 100644 --- a/zsh/zshrc.j2 +++ b/zsh/zshrc.j2 @@ -132,12 +132,12 @@ alias json2yaml="python3 -c 'import sys, yaml, json; yaml.safe_dump(json.loads(s alias currentbranch='git rev-parse --abbrev-ref HEAD' -alias issh="ssh -o StrictHostKeyChecking=false -o UserKnownHostsFile=/dev/null" alias gfix='git commit --amend --no-edit' alias gfixa='git commit --amend --no-edit --all ' alias gfixp='git commit --amend --no-edit --patch' alias issh="ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" +alias iscp="scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" alias newpw="pwgen --secure 25 1"