⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 .uni

📁 支持X/YModem和cis_b+协议的串口通讯程序
💻 UNI
字号:
#.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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -