sysname.ep
来自「一个通讯程序源码」· EP 代码 · 共 20 行
EP
20 行
#-----------------------------------------------------------# sysname.ep - procedure to call UNIX-like system 'sysname'## CONFIDENTIAL - This function should be chmod 0600 because# it contains a password which you probably don't want to be# common knowledge.## This procedure calls 'unixlogin.ep' to do the hard work.#----------------------------------------------------------- mkvar $s_pwd(20) # local variable preserves password $s_pwd = 'password' # security by disappearing when the # procedure terminates# also, by keeping the password text off the following line,# the password will not be displayed if you abort (interrupt)# the procedure do 'unixlogin' %argv(0) 'username' $s_pwd 'ansi-or-whatever'
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?