This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
write-sequence sequence stream &key start end => sequence | |
参数和值 | |
sequence --- 一个 sequence | |
stream --- 一个 output stream | |
start, end --- 位置指示符,start 默认为0, end 默认为 nil | |
描述 | |
write-sequence 将 sequence 从start到end的字句中的元素写出到 stream中 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
special-operator-p symbol => generalized-boolean | |
参数和值 | |
symbol --- 一个symbol | |
generalized-boolean --- 一个 generalized-boolean | |
描述 | |
如果 symbol 是一个special-operator, 返回 true, 否则返回 false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://clocc.sourceforge.net/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
sxhash object => hash-code | |
参数和值 | |
object --- 一个 object | |
hash-code --- 一个非负的 fixnum | |
描述 | |
sxhash 返回 object 的哈希值 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
machine-instance => description | |
参数和值 | |
description --- 一个 string 或者 nil | |
描述 | |
返回一个 string 来描述运行 common lisp 的电脑硬件(其实就是主机名, 写的这么晦涩) | |
代码 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
machine-type => description | |
参数和值 | |
description --- 一个 string 或者 nil | |
描述 | |
返回机器的架构 | |
代码 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
machine-version => description | |
参数和值 | |
description --- 一个 string 或者 nil | |
描述 | |
返回机器硬件的 version | |
代码 | |
* (machine-version) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
software-type => description | |
software-version => description | |
参数和值 | |
description --- 一个 string 或者 nil | |
描述 | |
software-type 返回系统类型 | |
software-version 返回系统内核版本 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
user-homedir-pathname &optional host => pathname | |
参数和值 | |
host --- 一个 string 或者一个 string 列表 或者 :unspecific | |
pathname --- 一个 pathname 或者 nil | |
描述 | |
返回用户的家目录 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# 有两种权限: | |
# 1. 允许访问外网 WEB 端口(80, 443, 8080), 把 IP 加到 wl_web_ip 即可. | |
# 2. 允许访问外网所有流量, 基于 wl_all_ip, 把 IP 加到 wl_all_ip 即可. | |
iptables -F FORWARD | |
iptables -F BLOCK | |
iptables -F MON |