Fading Coder

One Final Commit for the Last Sprint

Understanding Linux Environment Variables and Process Context

Process Execution and Context In a typical single-core CPU system, multiple processes do not run simultaneously but are executed concurrrently through rapid time-slicing. Each process is allocated a time slice; if it doesn't finish within that interval, the operating system saves its state and switc...

Shell Variable Types: Environment Variables versus Regular Variables

Shell Script Fundamentals Script Interpreter The interpreter declaration must appear on the first line, starting with a shebang (#!): #!/bin/bash Different languages require different interpreters. The shebang tells the system which program to use for executing the script. Comments Comment lines use...