代码搜索:bash

找到约 5,321 项符合「bash」的源代码

代码结果 5,321
www.eeworm.com/read/388205/8627802

passwd

root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin sync:x:5:0:sync:/
www.eeworm.com/read/387771/8654322

wstress

#!/bin/bash # # a simple test program to send test.txt repeatedly # i=1; while [ $i -eq $i ]; do cat test.txt >$1; done
www.eeworm.com/read/387007/8713168

sh bootstrap.sh

#!/bin/bash aclocal automake --add-missing --copy autoheader autoconf
www.eeworm.com/read/386582/8737534

sh p12topem.sh

#!/bin/bash if [ $# -ne 2 ] then echo "Usage: $0 alias passphrase" exit -1 fi openssl pkcs12 -passin pass:"$2" -passout pass:"$2" -in $1.p12 -out $1.pem
www.eeworm.com/read/386582/8737576

sh signfile.sh

#!/bin/bash if [ $# -ne 3 ] then echo "Usage: $0 alias filename passpharse" exit -1 fi openssl dgst -passin pass:"$3" -binary -sha1 -sign $1.pem $2 > $2.sign
www.eeworm.com/read/428290/8879629

txt shell编程案例详解.txt

译者序 毫无疑问,UNIX/Linux最重要的软件之一就是shell,目前最流行的shell被称为<mark>Bash</mark>(Bourne Again Shell),几乎所有的Linux和绝大部分的UNIX都可以使用<mark>Bash</mark>。作为系统与用户之间的交互接口,shell几乎是你在UNIX工作平台上最亲密的朋友,因此,学好shell,是学习Linux/UNIX的的开始,并且它会始终伴随你的工作学习。 shel ...
www.eeworm.com/read/185888/8980077

cmd build.cmd

pushd ..\..\..\libroadnav\win32 call Cleanup.cmd popd pushd .. call Cleanup.cmd popd bash build.sh
www.eeworm.com/read/283598/9002412

txt linux程式设计-11.shell script(bash)--(2)教学例.txt

Linux程式设计-11.Shell Script(bash)--(2)教学例 -------------------------------------------------------------------------------- 第八军团 时间:2004-1-15 22:24:33 "Hello world" Shell Script 照传统程式教
www.eeworm.com/read/283598/9002715

txt linux的shell编程(四).txt

Linux的shell编程(四) -------------------------------------------------------------------------------- 第八军团 时间:2004-1-15 22:22:43 六、bash程序的调试   在编程过程中难免会出错,有的时候,调试程序比编写程序花费的时间还要多,shell
www.eeworm.com/read/382631/9014979

sh remove-markers.sh

#!/bin/bash set -e if [ "$#" -ne 1 ]; then echo echo "Usage:" echo " $0 file.{h,cpp}" echo exit 1 fi # remove opening markers sed -i 's/ \/\/ {{{//g' $1 # remove closing markers sed -i