代码搜索:Script
找到约 10,000 项符合「Script」的源代码
代码结果 10,000
www.eeworm.com/read/167185/5465629
script test.script
#!/bin/sh
#@(#)test.script 3.7 12/13/88 ESI
ESPSCOM=./espscom
export ESPSCOM
echo "TEST Script for filtspec(1-ESPS)"
echo "First make a FILT file"
echo "notch_filt -n60 -b30 -s8000 test.filt"
notch_fi
www.eeworm.com/read/167185/5465697
plot_script
#! /bin/sh
#-----------------------------------------------------------------------+
# |
# This material contains proprietary software of Entropic Speech, |
# Inc. Any reproduction, distr
www.eeworm.com/read/163987/5500417
dof script.dof
[Compiler]
UnsafeType=0
UnsafeCode=0
UnsafeCast=0
[Directories]
OutputDir=..\..\..\..\bin
UnitOutputDir=..\..\..\..\dcu
SearchPath=..\..\..\..\run;..\..\..\..\common
www.eeworm.com/read/163987/5500419
dpr script.dpr
program Script;
uses
Forms,
main in 'main.pas' {MainForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.
www.eeworm.com/read/163840/5508208
xpm script.xpm
/* XPM */
static char * script_xpm[] = {
"32 32 14 1",
" s background c None",
". c black",
"X c #75D675D675D6",
"o c #FFFFFFFFCF3C",
"O c #FFFFCF3C9A69",
"+ c #FFFF9A696595",
"@ c #9A6930C20000",
"#
www.eeworm.com/read/350097/3129425
script ld.script
OUTPUT_ARCH(powerpc)
SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/powerpc-any-elf/lib);
/* Do we need any of these for elf?
__DYNAMIC = 0; */
SECTION
www.eeworm.com/read/350097/3129574
script ld.script
OUTPUT_ARCH(powerpc)
SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/powerpc-any-elf/lib);
/* Do we need any of these for elf?
__DYNAMIC = 0; */
SECTION
www.eeworm.com/read/347503/3168501
exp script.exp
# Test basic linker script functionality
# By Ian Lance Taylor, Cygnus Support
# Copyright 1999, 2000, 2001, 2002, 2004
# Free Software Foundation, Inc.
#
# This file is free software; you can red
www.eeworm.com/read/347503/3168531
t script.t
SECTIONS
{
.text 0x100 : {
text_start = .;
*(.text)
*(.pr)
text_end = .;
}
. = 0x1000;
.data : {
data_start = .;
*(.data)
*(.rw)
data_end = .;
}
}
www.eeworm.com/read/347503/3168561
s script.s
.text
.globl text_symbol
text_symbol:
.long 1
.data
.globl data_symbol
data_symbol:
.long 2