代码搜索:bash

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

代码结果 5,321
www.eeworm.com/read/374494/9402838

tst-pwunconv

#!/bin/bash export LANG=C TEMPDIR=`mktemp -d tests.XXXXXX` cat
www.eeworm.com/read/166678/10008371

unpacklogfiles

#! /bin/bash ./MersadAgent --offline-player --number 1 --goalie ./MersadAgent --offline-player --number 2 ./MersadAgent --offline-player --number 3 ./MersadAgent --offline-player --number 4 ./MersadA
www.eeworm.com/read/279654/10407788

html 223.html

www.eeworm.com/read/469590/6932241

runfromshell

#!/usr/local/bin/bash export QUERY_STRING="network" ./isindex.cgi
www.eeworm.com/read/469353/6973360

sh ipcheck.sh

########################################################################################################################################################################################################
www.eeworm.com/read/458682/7291449

sh c-vars.sh

#!/bin/bash # Manipulating a variable, C-style, using the ((...)) construct. echo (( a = 23 )) # Setting a value, C-style, #+ with spaces on both sides of the "=". echo "a (initial
www.eeworm.com/read/438832/7725311

sh self-destruct.sh

#!/bin/bash # self-destruct.sh kill $$ # 脚本将在此处结束自己的进程. # 回忆一下,"$$"就是脚本的PID. echo "This line will not echo." # 而且shell将会发送一个"Terminated"消息到stdout. exit 0 # 在脚本结束自身进程之后, #+ 它返回的退出码是什么? #
www.eeworm.com/read/438832/7725400

sh c-vars.sh

#!/bin/bash # 使用((...))结构操作一个变量, C语言风格的变量操作. echo (( a = 23 )) # C语言风格的变量赋值, "="两边允许有空格. echo "a (initial value) = $a" (( a++ )) # C语言风格的后置自加. echo "a (after a++) = $a" (( a-- )) # C语言风格
www.eeworm.com/read/438832/7725412

sh alt-bc.sh

#!/bin/bash # 使用命令替换来调用'bc' # 并与'here document'相结合. var1=`bc
www.eeworm.com/read/438832/7725830

sh weirdvars.sh

#!/bin/bash # weirdvars.sh: echo出一些诡异变量. var="'(]\\{}\$\"" echo $var # '(]\{}$" echo "$var" # '(]\{}$" 和上一句没什么区别.Doesn't make a difference. echo IFS='\' echo $var # '(] {}$"