代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/419426/10868158
sh init_fw_update_test_nand.sh
#!/bin/bash
# Run this to initialise the file system for the test runs.
./yaffs_test -u -i yaffs2
www.eeworm.com/read/416359/11031703
txt lab1.txt
JDBC lab1 ---- day1
## 实验目标 ##
1.测试JDBC开发环境
## 实验步骤 ##
1.驱动程序类库:ojdbc14.jar
linux: .bash_profile文件中
CLASSPATH=$CLASSPATH:/home/env/ojdbc14.jar
export CLASSPATH
注销/重登录
www.eeworm.com/read/469590/6932177
runfromshell
#!/usr/local/bin/bash
export HTTP_COOKIE="NPPIZZA=dcook"
./showcookies.cgi
www.eeworm.com/read/461921/7214452
sh init_fw_update_test_nand.sh
#!/bin/bash
# Run this to initialise the file system for the test runs.
./yaffs_test -u -i yaffs2
www.eeworm.com/read/459549/7273942
sh init_fw_update_test_nand.sh
#!/bin/bash
# Run this to initialise the file system for the test runs.
./yaffs_test -u -i yaffs2
www.eeworm.com/read/458682/7291436
sh ex27.sh
#!/bin/bash
END_CONDITION=end
until [ "$var1" = "$END_CONDITION" ]
# Tests condition here, at top of loop.
do
echo "Input variable #1 "
echo "($END_CONDITION to exit)"
read var1
echo "variab
www.eeworm.com/read/458682/7291732
sh missing-keyword.sh
#!/bin/bash
# missing-keyword.sh: What error message will this generate?
for a in 1 2 3
do
echo "$a"
# done # Required keyword 'done' commented out in line 7.
exit 0
www.eeworm.com/read/458682/7291753
sh dev-tcp.sh
#!/bin/bash
# dev-tcp.sh: /dev/tcp redirection to check Internet connection.
# Script by Troy Engel.
# Used with permission.
TCP_HOST=www.dns-diy.com # A known spam-friendly ISP.
TCP_PORT=80
www.eeworm.com/read/458682/7291785
sh prepend.sh
#!/bin/bash
# prepend.sh: Add text at beginning of file.
#
# Example contributed by Kenny Stauffer,
#+ and slightly modified by document author.
E_NOSUCHFILE=65
read -p "File: " file # -p arg to
www.eeworm.com/read/438832/7725319
sh ex22a.sh
#!/bin/bash
# 还是行星.
# 用行星距太阳的距离来分配行星的名字.
for planet in "Mercury 36" "Venus 67" "Earth 93" "Mars 142" "Jupiter 483"
do
set -- $planet # 解析变量"planet"并且设置位置参数.
# "--" 将防止$planet为空, 或者是以一个破折号开头.