代码搜索:Local
找到约 10,000 项符合「Local」的源代码
代码结果 10,000
www.eeworm.com/read/285810/8816494
c
#!/bin/sh
rm bootsec
/usr/local/bin/nasm bootsec.asm -o bootsec
cat ../kernel.elf >>bootsec
dd if=bootsec of=/dev/fd0
www.eeworm.com/read/385128/8817600
h initsct.h
/***********************************************************************/
/* */
/* FILE :initsct.h
www.eeworm.com/read/385118/8818115
makefile
#############################################################################
# Makefile for building: treemem
# Generated by qmake (2.01a) (Qt 4.2.2) on: Sun Mar 11 11:58:53 2007
# Project: treemem.
www.eeworm.com/read/285626/8826178
plg hello.plg
Build Log
--------------------Configuration: Hello - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\Users\acer\AppDa
www.eeworm.com/read/187367/8829946
js webfxapi.js
/*
* This script is used for WebFX Api pages
*
* It defines one funtion and includes helptip.js, helptip.css and webfxapi.css
*/
document.write( "
www.eeworm.com/read/187311/8833978
asm asmserver.asm
;**********************************************************************
;程序编写by Asm Bink
;日期:2007-1-10日
;出处:[url]http://www.wolfexp.net/[/url](红狼安全小组)
;注意事项:如欲转载,请保持本程序的完整,并注明:
;转载自 红狼安全小组([url]h
www.eeworm.com/read/187283/8835251
readme-encap
1/3/89 Pace Willisson
Here is what to do to bring up GCC & tools on an 80386 running system 5.3
(if you are adventurous and want to use the latest and greatest tools.
If you want it to be easy, check
www.eeworm.com/read/285490/8835965
param
#!/bin/sh
unset foo
echo ${foo:-bar}
foo=fud
echo ${foo:-bar}
foo=/usr/bin/X11/startx
echo ${foo#*/}
echo ${foo##*/}
bar=/usr/local/etc/local/networks
echo ${bar%local*}
echo ${bar%%local*}
exit