Files
home/.init/alias.sh
2025-10-08 10:35:48 +02:00

16 lines
315 B
Bash
Executable File

#!/bin/bash
alias ri='source ~/.init/init.sh'
# git
alias g1='git reset $(git commit-tree "HEAD^{tree}" -m "A new start")'
# rsync
alias rs='rsync --rsync-path="sudo rsync" -avzhe ssh'
# serve static files
alias ss='python -m http.server 8000 -d'
# download youtube mp3
alias yt='yt-dlp -x --audio-format mp3'