The things I do…
ps -A | grep argv | wc -l
where argv
is an input string such as tty, user, or Sys, ect…
As part of the class discussion on the process assignment, we graphed out the command process for the assignment. This was the result.ps -A | grep argv | wc -l
Most of the design of the program was extrapolated from the textbook (Silberschatz, et al, “Operating System Concepts”) example given on page 118:
int main(){ pid_t pid; pid = fork(); //fork a child process if (pid < 0) { //error occurred fprintf(stderr, "Fork Failed"); return 1; }else if (pid == 0) { // child process execlp("/bin/ls","ls",NULL); } else { // parent process wait(NULL); // parent will wait for the child to complete printf("Child Complete"); } return 0; }
execlp("grep", "grep", argv[1], NULL);
A solid resource used was the Open Group Publication on the unistd library. Specifically, the following pages:
How to run processes.cpp.
First ensure that the program is compiled.
g++ -o processes process.cpp
Then use the following commands in the shell:./processes tty
ps -A | grep tty | wc -l
./processes Sys
ps -A | grep Sys | wc -l
./processes user
ps -A | grep user | wc -l
>
./c1.sh > output.txt
I have not used the building NavMesh and NavMesh Agent for Unity. After watching a few tutorials on youtube about path finding and navigation, i
CSS430 – Operating and File Systems Program 1C: Process Creation Design The goal of process.cpp is to get familiar with with Linux programming using system
A model solar system made in a unique way with Unity.
First class project for CSS 451, Computer Graphics, using Unity.
I am back working on my golem concept but in a new direction.
This research report was complete as part of a class project. Contributors: Scott Shirley, Erica Ferguson, Shannon Evans, Robert Gutzeit Heuristic Art Library Final Report