📄 xcfront
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -