代码搜索:does
找到约 10,000 项符合「does」的源代码
代码结果 10,000
www.eeworm.com/read/380940/9120877
c nooutput.c
#include
void main ()
{
// printf ("This line does not appear");
/* This is a comment
printf ("This line does not appear either");
*/
}
www.eeworm.com/read/380940/9120909
c no_print.c
#include
void main ()
{
print ("This program does not link");
}
www.eeworm.com/read/180601/9301227
c nooutput.c
#include
void main ()
{
// printf ("This line does not appear");
/* This is a comment
printf ("This line does not appear either");
*/
}
www.eeworm.com/read/180601/9301257
c no_print.c
#include
void main ()
{
print ("This program does not link");
}
www.eeworm.com/read/376114/9330769
c nooutput.c
#include
void main ()
{
// printf ("This line does not appear");
/* This is a comment
printf ("This line does not appear either");
*/
}
www.eeworm.com/read/376114/9330789
c no_print.c
#include
void main ()
{
print ("This program does not link");
}
www.eeworm.com/read/374163/9419106
sh sparc-solaris-hostid.sh
#!/bin/sh
# This script reproduces the output of the Solaris hostid program.
# It might be put in /usr/bin/hostid or so.
# Note that the hostid program does not have any known uses
# and does not exis
www.eeworm.com/read/374163/9419108
namei readme1.namei
** NAMEI has local modifications, do not delete source when cleaning up **
"You're in a twisty maze of symbolic links, all different"
namei - a utility to chase down a pathname and print details at
www.eeworm.com/read/177608/9444222
colon
#!/bin/sh
rm -f fred
if [ -f fred ]; then
:
else
echo file fred does not exist
fi
exit 0