Files
.dotfiles/.bin/myhelp
2024-12-22 01:35:02 +04:00

25 lines
744 B
Bash

#!/bin/bash
set -e
myhelp() {
cat <<EOF
-----------------------------------------------------
## ## ## ## ## ## ###### ## #####
### ### ## ## ## ## ## ## ## ##
####### ## ## ## ## ## ## ## ##
## # ## #### ###### #### ## #####
## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ##
## ## ## ## ## ###### ###### ##
-----------------------------------------------------
alias yz | yazi
alias myzsh | source ~/.zshrc
alias ll | Comand ls -la
alias z | Command cd ..
alias zz | Command cd ../..
alias rmdir | Command rm -rf
alias st | Command systemctl
EOF
}
myhelp