代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/458682/7291325
sh arith-ops.sh
#!/bin/bash
# Counting to 11 in 10 different ways.
n=1; echo -n "$n "
let "n = $n + 1" # let "n = n + 1" also works.
echo -n "$n "
: $((n = $n + 1))
# ":" necessary because otherwise Bash atte
www.eeworm.com/read/144212/5752737
c vprint.c
/* vprint.c -- v[fs]printf() for 4.[23] BSD systems. */
/* Copyright (C) 1987,1989 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Bash is free software; you c
www.eeworm.com/read/339483/12230411
sh arith-ops.sh
#!/bin/bash
# Counting to 11 in 10 different ways.
n=1; echo -n "$n "
let "n = $n + 1" # let "n = n + 1" also works.
echo -n "$n "
: $((n = $n + 1))
# ":" necessary because otherwise Bash atte
www.eeworm.com/read/16793/691543
po tr.po
# translation of bash-3.2.po to Turkish
# Copyright (C) 2006 Free Software Foundation, Inc.
# Nilgün Belma Bugüner , 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: bash 3.2\n"
www.eeworm.com/read/153735/12009768
config
#!/bin/bash
# =============================================================================
#
# @(#) config,v 0.7.8.2 2001/12/11 15:11:40 brian Exp
#
# ----------------------------------------------
www.eeworm.com/read/490329/1201408
check_differences
#!/bin/bash
##############################################################
#
# Check to see if two MSVC dsp files differ and if they
# do then print out the changes
#
#########################
www.eeworm.com/read/466392/1511210
theme inverse.theme
#!/bin/bash
# Colors: #Dumping White #FFFFFF
# #Injection Green #1DFF00
# #Ass
www.eeworm.com/read/466392/1511211
theme default.theme
#!/bin/bash
# Colors: #Dumping White #FFFFFF
# #Injection Green #1DFF00
# #Ass
www.eeworm.com/read/327360/3462480
testclient
#!/bin/bash
TestClient -verbose --n root/SampleProvider 2>&1 | tee TestClient.log
www.eeworm.com/read/321483/3535057
sh mkapidoc.sh
#!/bin/bash
################################################################################
#
# mkapidoc.sh -- generate apidoc.fnc from scanning the Perl source
#
###################################