代码搜索:Script
找到约 10,000 项符合「Script」的源代码
代码结果 10,000
www.eeworm.com/read/458682/7291458
sh online.sh
#!/bin/bash
# logon.sh: A quick 'n dirty script to check whether you are on-line yet.
umask 177 # Make sure temp files are not world readable.
TRUE=1
LOGFILE=/var/log/messages
# Note that $LOGFIL
www.eeworm.com/read/458682/7291467
sh multiple-processes.sh
#!/bin/bash
# parent.sh
# Running multiple processes on an SMP box.
# Author: Tedman Eng
# This is the first of two scripts,
#+ both of which must be present in the current working directory.
LI
www.eeworm.com/read/458682/7291472
sh restricted.sh
#!/bin/bash
# Starting the script with "#!/bin/bash -r"
#+ runs entire script in restricted mode.
echo
echo "Changing directory."
cd /usr/local
echo "Now in `pwd`"
echo "Coming back home."
cd
echo
www.eeworm.com/read/458682/7291658
sh ex3.sh
#!/bin/bash
# This is a simple script that removes blank lines from a file.
# No argument checking.
#
# You might wish to add something like:
#
# E_NOARGS=65
# if [ -z "$1" ]
# then
# echo "Usage: `