代码搜索:Script
找到约 10,000 项符合「Script」的源代码
代码结果 10,000
www.eeworm.com/read/458682/7291668
sh ex19.sh
#!/bin/bash
# shft.sh: Using 'shift' to step through all the positional parameters
# Name this script something like shft.sh,
#+ and invoke it with some parameters.
#+ For example:
# sh
www.eeworm.com/read/458682/7291699
sh lowercase.sh
#!/bin/bash
#
# Changes every filename in working directory to all lowercase.
#
# Inspired by a script of John Dubois,
#+ which was translated into Bash by Chet Ramey,
#+ and considerably simplified
www.eeworm.com/read/458682/7291718
sh bashpodder.sh
#!/bin/bash
# bashpodder.sh:
# By Linc 10/1/2004
# Find the latest script at
#+ http://linc.homeunix.org:8080/scripts/bashpodder
# Last revision 12/14/2004 - Many Contributors!
# If you use this
www.eeworm.com/read/458682/7291782
sh ex76.sh
#!/bin/bash
# Hunting variables with a trap.
trap 'echo Variable Listing --- a = $a b = $b' EXIT
# EXIT is the name of the signal generated upon exit from a script.
#
# The command specified by th
www.eeworm.com/read/458682/7291783
sh wf.sh
#!/bin/bash
# wf.sh: Crude word frequency analysis on a text file.
# This is a more efficient version of the "wf2.sh" script.
# Check for input file on command line.
ARGS=1
E_BADARGS=65
E_NOFILE=66
www.eeworm.com/read/458552/7294340
asax global.asax
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
}
void
www.eeworm.com/read/458101/7307267
asp@filename=tryjs_fornext tryit.asp@filename=tryjs_fornext
Tryit Editor v1.4
function displayad()
{
document.getElementByI
www.eeworm.com/read/458101/7307298
asp@filename=try_dom_event_screenxy tryit_view.asp@filename=try_dom_event_screenxy
function coordinates(event)
{
x=event.screenX;
y=event.screenY;
alert("X=" + x + " Y=" + y);
}