代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/366341/9820734
txt 书籍目录.txt
全 书 目 录
红联Linux论坛电子书籍
<mark>bash</mark>入门基础
<mark>Bash</mark>最常见的激活模式
Linux Shell 里一些很少用到卻很有用的指令
Linux 基本使用命令(基本篇)
Linux 文件内容统计命令
Linux 系统命令精通指南
Linux 下对于passwd 命令的使用详解
Linux必学60个命令文件处理
Linux必学的重要命令
Linux程序的命令行处理
...
www.eeworm.com/read/438832/7725806
sh ex1a.sh
#!/bin/bash
# 一个Bash脚本的正确的开头部分.
# Cleanup, 版本 2
# 当然要使用root身份来运行.
# 在此处插入代码,来打印错误消息,并且在不是root身份的时候退出.
LOG_DIR=/var/log
# 如果使用变量,当然比把代码写死的好.
cd $LOG_DIR
cat /dev/null > messages
cat /dev/null > wtm
www.eeworm.com/read/438832/7725834
sh wh-loopc.sh
#!/bin/bash
# wh-loopc.sh: 循环10次的"while"循环.
LIMIT=10
a=1
while [ "$a" -le $LIMIT ]
do
echo -n "$a "
let "a+=1"
done # 到目前为止都没有什么令人惊奇的地方.
echo; echo
# +===============================
www.eeworm.com/read/144212/5752997
rc
##
# Bourne Again Shell config file
#
# Wilfredo Sanchez Jr. | tritan@mit.edu
# July 09, 1992
#
# MIT Project Athena
#
# ORIGINAL SOURCES: /usr/athena/lib/init/cshrc (ATHENA REL 7.3P)
##
default
www.eeworm.com/read/158872/5590062
cache cygwin.cache
# This file is a shell script that caches the results of configure
# tests for CYGWIN32 so they don't need to be done when cross-compiling.
# AC_FUNC_GETPGRP should also define GETPGRP_VOID
ac_cv_fun