linux常用命令整理
#前言
#bash
- Centos7防火墙开启或关闭某个端口:
1 | iptables -I INPUT -p tcp --dport <port> -j ACCEPT |
#git
- git回退到某一个版本, 即删除commit记录:
1 | git reset --hard <commit_id> |
- git新建一个新的空分支:
1 | git checkout --orphan <branch> |
#python
- 去掉字符串两边的空格:
1 | string.strip() |
- 大小写转换:
1 | # 小写字母转换成大写字母 |