代码搜索:bash

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

代码结果 5,321
www.eeworm.com/read/16793/691510

h siglist.h

/* siglist.h -- encapsulate various definitions for sys_siglist */ /* Copyright (C) 1993, 2001, 2005, 2008,2009 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHel
www.eeworm.com/read/16793/691601

bashbug.0

BASHBUG(1) BASHBUG(1) NNAAMMEE bashbug - report a bug in bash SSYYNNOOPPSSIISS bbaasshhbbuugg [_-_-_v_
www.eeworm.com/read/16793/691624

h ansi_stdlib.h

/* ansi_stdlib.h -- An ANSI Standard stdlib.h. */ /* A minimal stdlib.h containing extern declarations for those functions that bash uses. */ /* Copyright (C) 1993 Free Software Foundation, Inc.
www.eeworm.com/read/16793/691633

h memalloc.h

/* memalloc.h -- consolidate code for including alloca.h or malloc.h and defining alloca. */ /* Copyright (C) 1993 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Agai
www.eeworm.com/read/16793/691649

h mailcheck.h

/* mailcheck.h -- variables and function declarations for mail checking. */ /* Copyright (C) 1987,1991,2001,2003,2005,2006,2008,2009 Free Software Foundation, Inc. This file is part of GNU Bash,
www.eeworm.com/read/16793/691686

c mksignames.c

/* mksignames.c -- Create and write `signames.h', which contains an array of signal names. */ /* Copyright (C) 1992-2006 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourn
www.eeworm.com/read/17071/713744

ltypes

#!/bin/bash if [ $# -ne 1 ] then echo "usage: Ltypes filename" >&2 exit 2 fi FILE="$1" #TMPFILE='mktemp "${FILE}.XXXXXX"' || exit 1 TMPFILE=${FILE}.`date "+%s"` touch $TMPFILE || exit 1 # C
www.eeworm.com/read/35675/1059588

tellme2

#!/bin/bash # Using the new (( )) compound let command # Scriptname: tellme2 echo -n "How old are you? " read age if (( age < 0 || age > 120 )) then echo "Welcome to our planet! " exit 1 fi if (
www.eeworm.com/read/35675/1059598

printer_check

#!/bin/bash # Scriptname: printer_check # Script to clear a hung-up printer if [ $LOGNAME != root ] then echo "Must have root privileges to run this program" exit 1 fi cat
www.eeworm.com/read/35675/1059620

goodboys

#!/bin/bash # Scriptname name: goodboys PS3="Please choose one of the three boys : " select choice in tom dan guy do case $choice in tom) echo Tom is a cool dude! break;; # break out