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

📄 killem.sh

📁 vc环境下的pgp源码
💻 SH
字号:
#!/bin/sh
# killem.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



mywd=`pwd`
MODULES="libs/pfl libs/pgpcdk clients/pgp/shared clients/pgp/cmdline"


for x in $MODULES ; do
        cd $x;
        make distclean || make clean
        cd $mywd
done

⌨️ 快捷键说明

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