Update README.md

This commit is contained in:
outmanwt 2024-06-13 13:56:13 +08:00 committed by GitHub
parent a8e6511749
commit 30eb396102
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,2 +1,26 @@
# alias # alias
一些便携的alias 一些便携的alias
# 使用方法
```bash
cd ~
git clone https://github.com/outmanwt/alias.git
vi ~/.bashrc
```
在最后加入
```bash
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias hfind='history | grep '
alias pfind='ps aux | grep '
alias dexec='sh ~/alias/exec-docker.sh'
```
最后
```bash
source ~/.bashrc
```