代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/268797/11121199
news
Version 3.1 0.09
2007-10-27
- Add set/show trace-commands to make the same as gdb 6.6
- show commands now allows for a starting number and +, same as gdb
- Reduce assumption that undefined means
www.eeworm.com/read/268797/11121251
1 bashdb.1
.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.32
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sh \" Subsection heading
.b
www.eeworm.com/read/268797/11121253
pod bashdb-man.pod
=pod
=head1 NAME
bashdb - bash debugger script
=head1 SYNOPSIS
B [I] [--] I [I]
B [I] -c I
B [I
www.eeworm.com/read/438832/7725388
sh return-test.sh
#!/bin/bash
# return-test.sh
# 函数所能返回的最大正整数为255.
return_test () # 传给函数什么值, 就返回什么值.
{
return $1
}
return_test 27 # o.k.
echo $? # 返回27.
return_test 255 #
www.eeworm.com/read/268797/11121718
ac configure.ac
dnl
dnl Configure script for bash-3.x debugger
dnl
dnl
dnl Process this file with autoconf to produce a configure script.
# Copyright (C) 2002, 2003, 2004, 2005, 2007
# 2006 Rocky Bernstein
www.eeworm.com/read/431019/8712939
sh jspd.sh
#!/bin/bash
$JSPD_PATH="."
php -f $JSPD_PATH\jspd.php $1 $2 $3 $4 $5
www.eeworm.com/read/169323/9865978
sh mycpu.sh
#!/bin/bash
echo "**************************************************************"
cat /proc/cpuinfo|more
echo "**************************************************************"