Files
.dotfiles/.bin/myhelp

25 lines
744 B
Plaintext
Raw Normal View History

2024-12-22 01:21:31 +04:00
#!/bin/bash
2024-12-22 01:35:02 +04:00
set -e
2024-12-22 01:21:31 +04:00
myhelp() {
2024-12-22 01:35:02 +04:00
cat <<EOF
2024-12-22 01:21:31 +04:00
-----------------------------------------------------
## ## ## ## ## ## ###### ## #####
### ### ## ## ## ## ## ## ## ##
####### ## ## ## ## ## ## ## ##
## # ## #### ###### #### ## #####
## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ##
## ## ## ## ## ###### ###### ##
-----------------------------------------------------
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
2024-12-22 01:35:02 +04:00
EOF
2024-12-22 01:21:31 +04:00
}
2024-12-22 01:24:51 +04:00
myhelp