代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/380481/9145744
smsh makefile.smsh
#
# makefile for smsh
#
smsh1: smsh1.o splitline.o execute.o
cc -o smsh1 smsh1.o splitline.o execute.o
smsh2: smsh2.o splitline.o execute.o process.o controlflow.o
cc -o smsh2 smsh2.o splitline.o
www.eeworm.com/read/183272/9172519
c changemod.c
#include "apue.h"
int
main(void)
{
struct stat statbuf;
/* turn on set-group-ID and turn off group-execute */
if (stat("foo", &statbuf) < 0)
err_sys("stat error for foo");
if (chmod("foo", (
www.eeworm.com/read/183272/9172718
12 fig4.12
#include "apue.h"
int
main(void)
{
struct stat statbuf;
/* turn on set-group-ID and turn off group-execute */
if (stat("foo", &statbuf) < 0)
err_sys("stat error for foo");
if (chmod("foo", (
www.eeworm.com/read/378188/9242292
all x.all
#!/bin/sh
#
# Execute script for program mod1f of the EuroBen OpenMP Benchmark.
#
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
FILEXT="p0${OMP_NUM_THREADS}"
else
FILEXT="p${OMP_NUM_THREADS}"
fi
ex
www.eeworm.com/read/378188/9242315
all x.all
#!/bin/sh
#
# Execute script for program mod2f of the EuroBen OpenMP Benchmark.
#
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
FILEXT="p0${OMP_NUM_THREADS}"
else
FILEXT="p${OMP_NUM_THREADS}"
fi
ex