代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/458682/7291772
sh dialog.sh
#!/bin/bash
# dialog.sh: Using 'gdialog' widgets.
# Must have 'gdialog' installed on your system to run this script.
# Or, you can replace all instance of 'gdialog' below with 'kdialog' ...
# Version
www.eeworm.com/read/458682/7291780
sh getopt-simple.sh
#!/bin/bash
# getopt-simple.sh
# Author: Chris Morgan
# Used in the ABS Guide with permission.
getopt_simple()
{
echo "getopt_simple()"
echo "Parameters are '$*'"
until [ -z "$1" ]
d
www.eeworm.com/read/457991/7314534
lrk
#!/bin/bash
#
# Linux ROM Kitchen
#
# Copyright (C) 2007-2008 Pau Oliva Fora -
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of th
www.eeworm.com/read/457991/7314535
lrk-packages
#!/bin/bash
#
# Linux Rom Kitchen Package Selector
#
# Copyright (C) 2007-2008 Pau Oliva Fora -
#
# This program is free software; you can redistribute it and/or modify it
# under
www.eeworm.com/read/457991/7314537
lrk-scripts
#!/bin/bash
#
# Linux Rom Kitchen launcher script
#
# Copyright (C) 2007-2008 Pau Oliva Fora -
#
# This program is free software; you can redistribute it and/or modify it
# under
www.eeworm.com/read/457991/7314540
lrk-build
#!/bin/bash
#
# Linux Rom Kitchen Build script
#
# Copyright (C) 2007-2008 Pau Oliva Fora -
#
# This program is free software; you can redistribute it and/or modify it
# under the
www.eeworm.com/read/454368/7393111
setlibpath
# --- !/bin/bash
LIBDIR="`pwd`/lib"
echo "Adding $LIBDIR to library path ... "
if [ "$LD_LIBRARY_PATH" ]; then
echo "Checking your library path ... "
#echo -e "using $LD_LIBRARY_PATH" ;
OLDIFS=
www.eeworm.com/read/438832/7725427
sh encryptedpw.sh
#!/bin/bash
# Example "ex72.sh" modified to use encrypted password.
# Note that this is still rather insecure,
#+ since the decrypted password is sent in the clear.
# Use something like "ssh" if t
www.eeworm.com/read/198531/7931048
build-req
#!/bin/bash
#
# Build a certificate signing request and private key. Use this
# when your root certificate and key is not available locally.
#
if test $# -ne 1; then
echo "usage: build-req
www.eeworm.com/read/198531/7931051
build-inter
#!/bin/bash
#
# Make an intermediate CA certificate/private key pair using a locally generated
# root certificate.
#
if test $# -ne 1; then
echo "usage: build-inter ";
exit 1
f