代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/103308/6219996
sh posteditcheckinunlock.sh
#!/bin/bash
if test -z "$6"
then
stcmd ci -p "$1/$2" -x -stop -rp "$3" -u -o -r "$4" "$5"
else
stcmd ci -p "$1/$2" -x -stop -pwdfile "$6" -rp "$3" -u -o -r "$4" "$5"
fi
www.eeworm.com/read/103308/6219999
sh preeditcheckout.sh
#!/bin/bash
if test -z "$5"
then
stcmd co -p "$1/$2" -x -stop -o -rp "$3" "$4"
else
stcmd co -p "$1/$2" -x -stop -o -pwdfile "$5" -rp "$3" "$4"
fi
www.eeworm.com/read/103308/6220001
sh preeditcheckoutlock.sh
#!/bin/bash
if test -z "$5"
then
stcmd co -p "$1/$2" -x -stop -o -l -rp "$3" "$4"
else
stcmd co -p "$1/$2" -x -stop -o -l -pwdfile "$5" -rp "$3" "$4"
fi
www.eeworm.com/read/103308/6220005
sh getworkingproject.sh
#!/bin/bash
if test -z "$3"
then
echo "1 is: $1"
stcmd co -p $1 -x -stop -rp $2 -is "*"
else
stcmd co -p $1 -x -stop -rp $2 -pwdfile $3 -is "*"
fi
www.eeworm.com/read/103308/6220006
sh posteditcheckin.sh
#!/bin/bash
if test -z "$6"
then
stcmd ci -p "$1/$2" -x -stop -rp "$3" -o -r "$4" "$5"
else
stcmd ci -p "$1/$2" -x -stop -pwdfile "$6" -rp "$3" -o -r "$4" "$5"
fi
www.eeworm.com/read/103308/6220013
sh posteditpagelet.sh
#!/bin/bash
echo "1 is: $1"
echo "2 is: $2"
echo "3 is: $3"
echo "4 is: $4"
cd $1
cvs -d $2 commit -m"Anthill_Commit" $4
www.eeworm.com/read/103308/6220030
sh getworkingproject.sh
#!/bin/bash
cd $1
ss cp $2 -y$3,$4
ss get * -R -I-Y -O- -y$3,$4
www.eeworm.com/read/404558/11482758
sh searchuser2.sh
#!/bin/bash
read -p "please input the user that you want to find :" NAME
grep $NAME /etc/passwd &>/dev/null && echo "This user: $NAME is exist." || echo "The user:$NAME is no exist."
www.eeworm.com/read/347608/11655311
sh build_pc.sh
#!/bin/bash
rm -f Makefile
ln -s Makefile_pc.mak Makefile
www.eeworm.com/read/260832/11699979
switch2std
#!/bin/bash
MAKEFILES=`find . -name Makefile.std`
for i in ${MAKEFILES} ; do
( cd `dirname ${i}` && rm -f Makefile && ln -sf Makefile.std Makefile )
done