代码搜索:Script
找到约 10,000 项符合「Script」的源代码
代码结果 10,000
www.eeworm.com/read/176336/9502989
c script.c
// $Id: script.c,v 1.18 2003/07/04 01:11:38 lemit Exp $
//#define DEBUG_FUNCIN
//#define DEBUG_DISP
//#define DEBUG_RUN
#include
#include
#include
#include
www.eeworm.com/read/365946/9838937
script airline.script
CREATE TABLE "persons"("person_id" INTEGER NOT NULL PRIMARY KEY,"first_name" VARCHAR NOT NULL,"last_name" VARCHAR NOT NULL)
CREATE TABLE "flights"("flight_id" INTEGER NOT NULL PRIMARY KEY,"name" VARC
www.eeworm.com/read/364528/9904089
chm script.chm
www.eeworm.com/read/168534/9908554
c script.c
/*
* Runscript Run a login-or-something script.
* A basic like "programming language".
* This program also looks like a basic interpreter :
* a bit messy. (But hey, I'm no compiler writer :-
www.eeworm.com/read/168308/9921312
gif script.gif
www.eeworm.com/read/168308/9922659
gif script.gif
www.eeworm.com/read/363955/9928722
c script.c
/*
* This file is part of the Minicom Communications Program,
* written by Miquel van Smoorenburg 1991/1992/1993.
*
* Runscript Run a login-or-something script.
* A basic like "programming la
www.eeworm.com/read/167987/9942637
calling_script
#!/bin/ksh
# Script name: calling_script
# Example 10.124
function sayit { print "How are ya $1?" ; }
typeset -fx sayit # Export sayit to other scripts
sayit Tommy
print "Going to other scrip
www.eeworm.com/read/167987/9942640
other_script
# NOTE: This script cannot be invoked with #!/bin/ksh
# because function "sayit" is imported from script
# "calling_script", not defined in this script.
print "In other script "
sayit Dan
prin