https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
http://mirrors.zju.edu.cn/epel/epel-release-latest-6.noarch.rpm
http://mirrors.linuxeye.com/oneinstack-full.tar.gz
#!/usr/bin/env ruby | |
# List latest china IPv4 list | |
require 'open-uri' | |
(ARGF.path == '-' ? open('http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest') : ARGF).lines.each do |l| | |
next if !l.include?('ipv4') || l.include?('*') | |
cc, type, start, value = l.split('|')[1, 4] |
#!/bin/bash | |
######## | |
# ~ ps ax | |
# PID TTY STAT TIME COMMAND | |
# 1 ? Ss 7:05 /lib/systemd/systemd --system --deserialize 22 | |
# 2 ? S 0:03 [kthreadd] | |
# 3 ? I< 0:00 [rcu_gp] | |
# ...... | |
# 1787740 pts/1 S+ 0:00 grep --color=auto grep | |
# ~ w |