xcfront

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

TXT
17
字号
#!/bin/sh# xcfront; cycle through various modems until xc returns successful status# designed to be used within a csh alias, e.g.:#	alias xc 'cd /pub/jpr/comm ; xcfront \!*'# or a ksh alias, e.g.:#	alias -x xc='cd /pub/jpr/comm; xcfront $*'## This changes you to a favorite directory used while communicating,# then runs 'xc' with any other command line parameters.# The MODEM list below should include all available ones, and 'xc'# is called until it finds one that's free.MODEM=cua1 xc $* && exit 0MODEM=cua0 xc $* && exit 0MODEM=cua3 xc $* && exit 0MODEM=cua2 xc $* && exit 0

⌨️ 快捷键说明

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