Prev 15 | OO Programming and Java | Chapter 2 section 17 + Java Handout + Chapter 12 | lab15 Java101 |
16 | Concurrency and Java | Chapter 13 not sect'n 9 | lab16 Java102 |
Next 17 | Exceptions | Chapter 14 | lab17 Java103 |
All modern operating systems use concurrency.
The introductory definitions and ideas in the book are important.
The various forms of hardware (MIMD and SIMD) and FORTRAN based concurrency can be ignored. Take our advanced architecture courses for this and/or talk to Dr. Gomez.
You need to understand
ls|grep 320
Examples
ls|wc -llists files and counts them. (ls =list, wc -l = count lines)
ls|grep 320|wc -llist files, filters out those with '320' in the name and counts them.
grep -l 320 *|wc -lcounts the number of files with '320' inside them.
ps -elf|grep $USERlists all processes and filters out those with your name in them... including the two processes 'ps -elf' and 'grep'.
. . . . . . . . . ( end of section Notes) <<Contents | End>>