mvcygwin.sh

来自「wm PNE 3.3 source code, running at more 」· Shell 代码 · 共 29 行

SH
29
字号
#!/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 + =
减小字号Ctrl + -
显示快捷键?