代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/119473/14829763
asm redirect.asm
; REDIRECT.ASM -Demonstrates how to redirect I/O for a child process.
; This particular program invokes COMMAND.COM to execute
; a DIR command, when is sent to the specif
www.eeworm.com/read/218565/14915218
sin insert-header.sin
# Sed script that inserts the file called HEADER before the header entry.
#
# At each occurrence of a line starting with "msgid ", we execute the following
# commands. At the first occurrence, insert
www.eeworm.com/read/216443/15006842
m contents.m
% LTFAT - Compiled Octave functions
%
% On Unix, execute the command
%
% make -f MyMakefile
%
% to build the interfaces.
%
% Upon succesfull compilation, the routines comp_wfac, comp_iwfac,
www.eeworm.com/read/207672/15265144
sin insert-header.sin
# Sed script that inserts the file called HEADER before the header entry.
#
# At each occurrence of a line starting with "msgid ", we execute the following
# commands. At the first occurrence, insert
www.eeworm.com/read/9264/166034
scr reset_go_main.scr
// Hitex/Lue/11.02.2008
// Executable Script file for HiTOP Debugger
// Reset application & Go main
// Reset
RESET TARGET
// execute program till main
Go UNTIL main
wait
www.eeworm.com/read/11139/197440
install
Installation for TinyOS-specific uisp:
Execute
./COMPILE
(you can run the commands it contains directly if you prefer)
Then:
make install
(you must be root on Linux to perform this step)
www.eeworm.com/read/16793/691523
sin insert-header.sin
# Sed script that inserts the file called HEADER before the header entry.
#
# At each occurrence of a line starting with "msgid ", we execute the following
# commands. At the first occurrence, insert
www.eeworm.com/read/35675/1059856
permx
#!/bin/sh
# Scriptname:permx
for file # Empty wordlist
do
if [ -f $file -a ! -x $file ]
then
chmod +x $file
echo $file now has execute permission
fi
done