diff --git a/Operating_Systems/The_Kernel.md b/Operating_Systems/The_Kernel.md index 3d66611..19b8d97 100644 --- a/Operating_Systems/The_Kernel.md +++ b/Operating_Systems/The_Kernel.md @@ -2,11 +2,12 @@ tags: - Operating_Systems - Linux + - processes --- # The Kernel -The kernel acts as the primary mediator between the hardware (CPU, memory) and user processes. Let's look at each of its responsibilities in greater depth: +The kernel acts as the primary mediator between the hardware (CPU, memory) and user [processes](../Programming_Languages/Shell_Scripting/Processes.md). Let's look at each of its responsibilities in greater depth: * process management * memory management * device drivers @@ -57,3 +58,6 @@ In Linux there are two particularly important system calls: Example with a terminal program like `ls`: > When you enter `ls` into the terminal window, the shell that's running inside the terminal window calls `fork()` to create a copy of the shell, and then the new copy of the shell calls `exec(ls)` to run `ls`. (_Ibid._) + +## Controlling processes +In Linux we can view, kill, pause and resume processes using [ps](../Programming_Languages/Shell_Scripting/Processes.md). \ No newline at end of file diff --git a/Programming_Languages/Shell_Scripting/Find.md b/Programming_Languages/Shell_Scripting/Find.md index 31399d7..ae46e5f 100644 --- a/Programming_Languages/Shell_Scripting/Find.md +++ b/Programming_Languages/Shell_Scripting/Find.md @@ -75,7 +75,10 @@ $ find -not -name "*.js" -type f ./app/index.html ./app/style.css ./dist/index.html -./dist/style.css +./dist/style.c + + +dfdf ``` ## Actions diff --git a/Programming_Languages/Shell_Scripting/Processes.md b/Programming_Languages/Shell_Scripting/Processes.md new file mode 100644 index 0000000..e69de29 diff --git a/Programming_Languages/TypeScript/Type_declarations.md b/Programming_Languages/TypeScript/Type_declarations.md index 6b38462..ad2937c 100644 --- a/Programming_Languages/TypeScript/Type_declarations.md +++ b/Programming_Languages/TypeScript/Type_declarations.md @@ -4,6 +4,7 @@ tags: - typescript --- +# Type declarations ## Scalar data types The most basic type level is the one already present in JavaScript itself: the primitive data types: `boolean`, `string` and `number` . These are the types that will be returned from a `typeof` expression.