.uni

来自「支持X/YModem和cis_b+协议的串口通讯程序」· UNI 代码 · 共 57 行

UNI
57
字号
#.uni# sample script to call CompuServe, go to the UnixForum,# and enter terminal mode	debug "on"		# turn on verbose script reporting	tty "on"		# echo received characters to screen	set bps 2400	# numbers don't need literal quotes	set proto 7E	# CIS is happier	if ! linked; then		# dial if we haven't already		dial "9687790"	endif	while ! waitfor "CONNECT" 35	# redial forever	do		redial	done	pause 2				# wait for network to catch up	# wait for a "User ID" prompt, but put a cap on how long	transmit "^C"	assign counter eq 1	while ! waitfor " ID" 20	do		incr counter		if counter morethan 5; then quit; endif		transmit "^C"	done	pause 2				# wait for network to catch up	transmit "72160,1341^M"		# send user ID number (PPN)	# if no "Password:" prompt in 20 seconds, bomb out	if ! waitfor "word" 20 ; then quit; endif	debug "off"			# password protection	pause 1; transmit "goose-bumps^M"	debug "on"	waitfor "!" 20	transmit "g unixfo^M"	# if we don't see "Welcome", we're not in the Forum	if ! waitfor "Welcome" 20	then				# <- NEVER forget the "then"!		transmit "bye^M"		quit			# this is total program death	else		beep			# just a personal touch	endif	set cis on			# enable auto-startup of CIS B+ transfers	exit				# enter terminal mode

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?