代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/257632/4363195
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/253341/4397927
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/161559/5551359
sh dumpdata.sh
#!/bin/bash
#
# This script extracts data from the database.
# Compressed dump is sent to stdout. Use restore.sh script to restore
# data from a generated dump file.
#
# Usage:
# dumpdata > dump
ec
www.eeworm.com/read/155397/5622197
in tinyos.sh.in
# script for profile.d for bash shells, adjusted for each users
# installation by substituting @prefix@ for the actual tinyos tree
# installation point.
TOSROOT="@prefix@/tinyos-1.x"
export TOSROOT
T
www.eeworm.com/read/475585/6773976
sh counttestset.sh
#!/bin/bash
# File: counttestset.sh
# Description: Script to count the errors on a single UNLV set.
# Author: Ray Smith
# Created: Wed Jun 13 11:58:01 PDT 2007
#
# (C) Copyright 2007,
www.eeworm.com/read/294005/8258120
configure
#!/bin/bash
ok=0
checkinclude()
{
printf "checking for $1... "
# only the preprocessor is needed check for the libaries
if ! gcc -o /dev/null -L /usr/local/lib/ -l$1 check$$.c &> /dev/null;
th
www.eeworm.com/read/173430/9658722
sh tester.sh
#!/bin/bash
#
# tester.sh - reads testcases from file and tests busybox applets vs GNU
# counterparts
#
# This should be run from within the tests/ directory. Before you run it, you
# should compile u
www.eeworm.com/read/368572/9686099
pdf2html
#!/bin/bash
filter='./pbm2png'
ghostscript='gs'
basename='letters'
titlestring='Letters generated for Links'
bottom=''
pageoffset='0'
PATH=$PATH:./
hdpi=`expr $hundred_dpi '*' 17 '/' 100`
vdpi=`expr
www.eeworm.com/read/170567/9798097
install-in-kernel
#!/bin/bash
#
# This script installs the serial driver into a Linux kernel tree.
#
ARG=$1
if [ "$ARG"x = x ]; then
ARG=$DESTDIR
fi
if [ "$ARG"x = x ]; then
ARG=/usr/src/linux
fi
install_file ()
www.eeworm.com/read/268797/11121175
inc dbg-hist.inc
# dbg-hist.inc - Bourne Again Shell Debugger history routines
#
# Copyright (C) 2002, 2003, 2006, 2007 Rocky Bernstein
# rockyb@users.sourceforge.net
#
# Bash is free software; you can redistrib