Add a couple of fish aliases

This commit is contained in:
Johannes Rothe 2021-08-30 19:49:23 +02:00
parent 67b14254de
commit 4045522d06
6 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,4 @@
# Defined in - @ line 1
function cal --wraps='ncal -wM -3' --description 'alias cal=ncal -wM -3'
ncal -wM -3 $argv;
end

View File

@ -0,0 +1,4 @@
# Defined in - @ line 1
function ip --wraps='ip -c' --description 'alias ip=ip -c'
command ip -c $argv;
end

View File

@ -0,0 +1,4 @@
# Defined in - @ line 1
function upd --wraps='sudo apt update' --description 'alias upd=sudo apt update'
sudo apt update $argv;
end

View File

@ -0,0 +1,4 @@
# Defined in - @ line 1
function upg --wraps='sudo apt upgrade' --description 'alias upg=sudo apt upgrade'
sudo apt upgrade $argv;
end

View File

@ -0,0 +1,4 @@
# Defined in - @ line 1
function vpn --wraps='sudo openvpn --config /etc/openvpn/watchguard_config/client.ovpn' --description 'alias vpn=sudo openvpn --config /etc/openvpn/watchguard_config/client.ovpn'
sudo openvpn --config /etc/openvpn/watchguard_config/client.ovpn $argv;
end

View File

@ -0,0 +1,4 @@
# Defined in - @ line 1
function wtftoru --wraps='rosrun robot_debugger robot_debugger' --description 'alias wtftoru=rosrun robot_debugger robot_debugger'
rosrun robot_debugger robot_debugger $argv;
end