Simple job with data manipulation

From MediaWiki

Revision as of 13:00, 9 December 2011 by Ngrkic (Talk | contribs)
Jump to: navigation, search

This is simple single job submitting example with data management. In this case, WN will download source code and executing script from SE and after successful ending of job, result will be uploaded on SE.

Content of uploaded files:

hello.c

#include <stdio.h>

int main()
{
 printf ("hello world!!\n");
 return 0;
}

hello.sh

#Compile C file

gcc hello.c -o hello

#Execute hello program

./hello
Personal tools