📄 mvcygwin.sh
字号:
#!/bin/sh## this script moves the cygwinb19 binaries we add to a Tornado installation# from the directory ${1} to the directory ${2}### $Log: mvcygwin.sh,v $# Revision 1.2 2002/06/13 16:12:03 meister# if no cygwinb19.dll, copy in## Revision 1.1 2002/05/17 17:26:08 meister# move cygwin binaries into final resting place in a Tornado installation##if [ ! -d ${2} ]; then mkdir -p ${2}ficp ${1}/*.exe ${2}if [ ! -f ${2}/cygwinb19.dll ]; then cp ${1}/cygwinb19.dll ${2}fiexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -