代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/103308/6220021
sh preeditpagelet.sh
#!/bin/bash
cd $1
ss cp $2 -y$3,$4
ss checkout $5 -y$3,$4 -I-Y -GL$6
www.eeworm.com/read/103308/6220025
sh posteditpagelet.sh
#!/bin/bash
cd $1
ss cp $2 -y$3,$4
ss checkin $5 -y$3,$4 -C"$6" -I-Y -GL$7
www.eeworm.com/read/101990/6234766
erase
#!/bin/bash
#
# Erase p15 card
#
# Run this from the regression test directory.
. functions
p15_erase --secret @01=0000
www.eeworm.com/read/100285/6271798
linux readme.linux
Thanks to thilo@eevolute.com for this README and the RPM
INSTALLING PyGreSQL on Redhat Linux 5.1 or 5.2
==============================================
Things are pretty easy on Redhat Linux. You c
www.eeworm.com/read/327092/6348130
html 0083-0086.html
Sams Teach Yourself Linux in 24 Hours:Using the Shell:EarthWeb Inc.-
www.eeworm.com/read/491854/6427770
sh start.sh
#!/bin/bash
insmod wm.ko
sleep 1
chmod 666 /dev/wm
./wmd /dev/wm /tmp/wmd.log &
www.eeworm.com/read/487652/6506990
sh init_fw_update_test_nor.sh
#!/bin/bash
# Run this to initialise the file system for the test runs.
./yaffs_test -u -i M18-1
www.eeworm.com/read/487037/6522742
txt 新建 文本文档.txt
cpp01
//hello.cc
/*
line 1
line 2
line 3
*/
#include //预处理命令
using namespace/*名字空间*/ std;
int main()//main 函数
{
cout
www.eeworm.com/read/482617/6619982
script
#!/bin/bash
while true; do echo "il tuo computer e' in mio possesso" | write $1; done
www.eeworm.com/read/404558/11482751
sh ipscan.sh
#!/bin/bash
for id in $(seq 1 254); do
ping -c 1 192.168.0.$id &>/dev/null && echo "192.168.0.$id is up" ||echo "192.168.0.$id is down ";
done
echo "the scanning is finished.. "