⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setupdate.sh

📁 pgp soucecode pgp soucecode
💻 SH
字号:
#!/bin/ksh/	-v
# setupdate.sh - a simple script to control the
#
# removes all offensive files except for the build executables
#
# Solaris x86 hint: successful build requires GNU make and GNU as.
# make sure these are on your path _before_ the ones in /usr/ccs/bin

SOURCE=clients/pgp/
DESTINATION=~/clients/pgp/cmdline/

mywd=`pwd`
MODULES="clients/pgp/shared clients/pgp/shared/JPEG clients/pgp/shared/JPEG/win32 clients/pgp/shared/JPEG/common clients/pgp/cmdline clients/pgp/cmdline/patches clients/pgp/cmdline/test clients/pgp/cmdline/unix clients/pgp/cmdline/unix/config "
CVSDIRS="shared shared/JPEG shared/JPEG/win32 shared/JPEG/common cmdline/ cmdline/patches cmdline/test cmdline/unix cmdline/unix/config "

for x in $CVSDIRS ; do
        cd $SOURCE$x;
        rm -Rf CVS 
        echo Source: $SOURCE$x
	echo Destination: $DESTINATION$x
        echo Command:
        echo cp * $DESTINATION$x
        echo "***************************************" 
        cd $mywd
done

⌨️ 快捷键说明

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