摘要:
查看操作系统版本 cat /etc/issue或lsb_release -a 查看、开启、关闭防火墙 service iptables status service iptables start service iptables stop du -lh --max-depth=1 : 查看当前目录下 阅读全文
摘要:
#!/usr/bin/python # -*- coding: utf-8 -*- def bubble_sort(array): length=len(array)-1 for i in range(0,length): for j in range(i,length): if array[i]>array[j+1]: ... 阅读全文