代码搜索:Script
找到约 10,000 项符合「Script」的源代码
代码结果 10,000
www.eeworm.com/read/250017/12442312
script sample.script
#!/bin/sh
# Currently, we only dispatch according to command. However, a more
# elaborate system might dispatch by command and interface or do some
# common initialization first, especially if more d
www.eeworm.com/read/250017/12442362
h script.h
#ifndef _SCRIPT_H
#define _SCRIPT_H
void run_script(struct dhcpMessage *packet, const char *name);
#endif
www.eeworm.com/read/250017/12442406
c script.c
/* script.c
*
* Functions to call the DHCP client notification scripts
*
* Russ Dill July 2001
*
* This program is free software; you can redistribute it and/or modify
* it
www.eeworm.com/read/131698/14132564
dsw script.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/130781/14174352
script2
#!/bin/sh
# script2: a real program with variables, input,
# and control flow
BOOK=$HOME/phonebook.data
echo find what name in phonebook
read NAME
if grep $NAME $BOOK > /tmp/pb.tmp
then
ec
www.eeworm.com/read/130781/14174358
script0
# this is called script0
# it runs some commands
ls
echo the current date/time is
date
echo my name is
whoami
www.eeworm.com/read/130781/14174362
script3
#!/bin/sh
# script3 - shows how an environment variable is passed to commands
# TZ is timezone, affect things like date, and ls -l
#
echo "The time in Boston is"
TZ=EST5EDT
export TZ # ad