killem.sh
来自「vc环境下的pgp源码」· Shell 代码 · 共 20 行
SH
20 行
#!/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 + =
减小字号Ctrl + -
显示快捷键?