mirror of
https://github.com/1xtier/.dotfiles.git
synced 2026-03-17 10:57:57 +00:00
27 lines
749 B
Bash
27 lines
749 B
Bash
#!/bin/bash
|
|
|
|
myhelp() {
|
|
|
|
cat << EOF
|
|
-----------------------------------------------------
|
|
## ## ## ## ## ## ###### ## #####
|
|
### ### ## ## ## ## ## ## ## ##
|
|
####### ## ## ## ## ## ## ## ##
|
|
## # ## #### ###### #### ## #####
|
|
## ## ## ## ## ## ## ##
|
|
## ## ## ## ## ## ## ##
|
|
## ## ## ## ## ###### ###### ##
|
|
-----------------------------------------------------
|
|
EOF
|
|
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
|
|
|
|
}
|