代码搜索:BASH
找到约 5,321 项符合「BASH」的源代码
代码结果 5,321
www.eeworm.com/read/179157/9367708
bash_profile .bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
MAILTO=sysadm
export MAILTO
PATH=$PATH:$HOME/bin:.
export
www.eeworm.com/read/177968/9425576
bash perf.bash
#!/bin/bash
#########################################################
# An example source module to accompany...
#
# "Using POSIX Threads: Programming with Pthreads"
# by Brad nichols, Dick Buttl
www.eeworm.com/read/373012/9479224
bash replace.bash
#!/bin/bash -
for A in $*
do
sed "s|1997-2005|1997-2006|g" $A > $A.XXX
echo modif $A
rm -f $A
mv -f $A.XXX $A
done
www.eeworm.com/read/371270/9558490
pdf bash.pdf
www.eeworm.com/read/163062/10177219
gif bash.gif
www.eeworm.com/read/163062/10177221
png bash.png
www.eeworm.com/read/357231/10213341
hlp bash.hlp
BASH(1) BASH(1)
NAME
bash - GNU Bourne-Again SHell
SYNOPSIS
bash [options] [file]
COPYRIGHT
Bash is Copyright (C) 1989-2002 by the Free Software Foundation, Inc
www.eeworm.com/read/278864/10501580
bash redir.bash
#!/usr/local/bin/bash -norc
#
# redir - redirect stdout and stderr to files
#
# This file is a part of the SimpleScalar tool suite written by
# Todd M. Austin as a part of the Multiscalar Research Pr
www.eeworm.com/read/278235/10554801
bash emacs.bash
# This defines a bash command named `edit' which contacts/resumes an
# existing emacs or starts a new one if none exists.
#
# One way or another, any arguments are passed to emacs to specify files
# (
www.eeworm.com/read/351829/10604733
bash_completion
#-*- mode: shell-script;-*-
# Programmed completion for bash to use quilt
# Copyright 2003-2004 Martin Quinson (martin quinson#debian org)
# This file is part of the distribution of quilt, and is di