代码搜索:usage

找到约 10,000 项符合「usage」的源代码

代码结果 10,000
www.eeworm.com/read/152804/12080682

readme

This directory contains some useful tool written to be used in zhcon. uc2win: convert UCDOS's dict file into windows ime file format usage: ./uc2win < wb.dic > wb.txt win2mb: convert windows im
www.eeworm.com/read/253789/12200234

sh getcmdlineopt.sh

#! /bin/sh usage="Usage: $0 [-h remotehost] [-d remotedirectory]... [-f remfile:localfile]... \ [-c localdirectory] [-m filepattern] [-v]" if [ $# -eq 0 ]; then echo $usag
www.eeworm.com/read/253789/12200250

sh string.functions.sh

#!/bin/bash # function strcat # Usage: strcat s1 s2 function strcat () { local s1_val s2_val s1_val=${!1} # indirect variable expansion s2_val=${!2}
www.eeworm.com/read/252193/12294590

sh getcmdlineopt.sh

#! /bin/sh usage="Usage: $0 [-h remotehost] [-d remotedirectory]... [-f remfile:localfile]... \ [-c localdirectory] [-m filepattern] [-v]" if [ $# -eq 0 ]; then echo $usag
www.eeworm.com/read/252193/12294601

sh string.functions.sh

#!/bin/bash # function strcat # Usage: strcat s1 s2 function strcat () { local s1_val s2_val s1_val=${!1} # indirect variable expansion s2_val=${!2}
www.eeworm.com/read/252180/12295753

c jpegtran.c

/* * jpegtran.c * * Copyright (C) 1995-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README fi
www.eeworm.com/read/251549/12338303

tcl concord.tcl

#!/usr/bin/tclsh # We begin by specifying the shell to run under and initializing some variables. set VerboseFlag false set FileToRead "-" set Usage "Usage: concord \[-v] \[-f]" # Remembe
www.eeworm.com/read/336620/12429732

c jpegtran.c

/* * jpegtran.c * * Copyright (C) 1995-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README fi
www.eeworm.com/read/233016/14173676

m fasthssynthesis.m

function x = FastHSSynthesis(c, par1, par2, par3) % Usage: % x = FastHSSynthesis(c) % Inputs: % c the coef % Outputs: % x the signal: x = cumsum(c); % See Also: % FastHSAnalysis % x =
www.eeworm.com/read/232412/14195579

sh showgroup.sh

#!/bin/bash MIGGROUP=$1 PROCESSES=`ls /proc | grep [0-9]` function usage() { echo "Usage: showgroup [process-group]" echo exit -1 } if [ $# != 1 ]; then usage fi echo $MIGGROUP | grep [0-9] 1