- 实词:名词、动词、形容词、状态词、区别词、数词、量词、代词
- 虚词:副词、介词、连词、助词、拟声词、叹词。
n 名词
nr 人名
| #!/bin/bash | |
| # CHANGE THESE | |
| auth_email="user@example.com" | |
| auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings | |
| zone_name="example.com" | |
| record_name="www.example.com" | |
| # MAYBE CHANGE THESE | |
| ip=$(curl -s http://ipv4.icanhazip.com) |
| #!/bin/sh | |
| # | |
| # Startup script for the DNS caching server | |
| # | |
| # chkconfig: - 49 50 | |
| # description: This script starts your DNS caching server | |
| # processname: dnsmasq | |
| # pidfile: /var/run/dnsmasq.pid | |
| # Source function library. |
| #!/bin/sh | |
| # | |
| # chkconfig: 35 99 99 | |
| # description: Node.js /home/nodejs/sample/app.js | |
| # | |
| . /etc/rc.d/init.d/functions | |
| USER="nodejs" |
| #! /bin/bash | |
| PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin | |
| export PATH | |
| #=============================================================================================== | |
| # System Required: CentOS6.x (32bit/64bit) | |
| # Description: Install Shadowsocks(libev) for CentOS | |
| # Author: Teddysun <i@teddysun.com> | |
| # Intro: http://teddysun.com/357.html | |
| #=============================================================================================== |