Update dotfiles/.local/aliases, dotfiles/.local/bin/run

This commit is contained in:
Brian Zalewski 2022-11-19 14:07:05 +00:00
parent 99f77d8804
commit 56e3910bf7
2 changed files with 3 additions and 3 deletions

View file

@ -69,9 +69,6 @@ alias rclonegui='rclone rcd --rc-web-gui --rc-user=admin --rc-pass=pass --rc-ser
# Reboot the computer # Reboot the computer
alias reboot='sudo /sbin/reboot' alias reboot='sudo /sbin/reboot'
# Local Task alias
alias run="task --taskfile $HOME/.local/common/shared/Taskfile.yml"
# Make rm command verbose # Make rm command verbose
alias rm='rm -vi' alias rm='rm -vi'

3
dotfiles/.local/bin/run Normal file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
task --taskfile $HOME/.local/common/shared/Taskfile.yml $@