#前言

#bash

  • Centos7防火墙开启或关闭某个端口:
1
2
iptables -I INPUT -p tcp --dport <port> -j ACCEPT
iptables -I INPUT -p tcp --dport <port> -j REJECT

#git

  • git回退到某一个版本, 即删除commit记录:
1
2
git reset --hard <commit_id>
git push -f -u origin <branch>
  • git新建一个新的空分支:
1
2
git checkout --orphan <branch>
git rm -rf .

#python

  • 去掉字符串两边的空格:
1
string.strip()
  • 大小写转换:
1
2
3
4
5
6
7
8
9
10
11
# 小写字母转换成大写字母
string.upper()

# 大写字母转换成小写字母
string.lower()

# 开头字母大写
string.capitalize()

# 所有首字母大写
string.title()

#selenium