This commit is contained in:
Patrick Alvin Alcala 2025-08-20 14:36:21 +08:00
parent 801ecf504d
commit 633c2545d6
2 changed files with 7 additions and 3 deletions

8
.zshrc
View file

@ -211,8 +211,12 @@ fwt() {
alias rmf="sudo rm -rf"
cpf() {
sudo rsync -avh $1 $2
copy() {
sudo rsync -avhP $1 $2
}
move() {
sudo rsync -avhP --remove-source-files $1 $2
}
alias svpull="git clone https://git.snuffverse.cc/darksomerabbit/snuffverse /home/patrick/Documents/WebApps/snuffverse && cd /home/patrick/Documents/WebApps/snuffverse"