一些好用的 alias 命令
Posted 铁锚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一些好用的 alias 命令相关的知识,希望对你有一定的参考价值。
因为 gist 被强的比较厉害,所以只好放到 repo 中。
可以放到 ~/.bash_profile
文件中, 或者
# SYS ALIAS
# ll显示隐藏文件
alias ll='ls -lAF'
# docker 快捷命令
alias dc='docker-compose'
# 查看Linux端口监听
alias port='netstat -ntlp'
# 查看MAC端口号监听
alias port='sudo lsof -iTCP -sTCP:LISTEN -n -P'
# 统计git仓库的代码行数
alias lines='git ls-files | xargs wc -l | grep total'
如果你有好用的alias,欢迎补充: pr, wiki, comment 都可以。
Github仓库链接: https://github.com/cncounter/translation/tree/master/tiemao_2021/27_shell_alias
Gitee仓库链接: https://gitee.com/cncounter/translation/tree/master/tiemao_2021/27_shell_alias
以上是关于一些好用的 alias 命令的主要内容,如果未能解决你的问题,请参考以下文章