Category: beginner
BASH script under linux supports the for loops. There are quite a few ways to write for loops. 1. List the Values for I in 1 2 3; do …
Javascript is the most popular programming language used on internet. It is also extended in many other platforms for system administration/scripting/macro purposes. For example, WSH (Windows Script Hosting) supports …
Sed (Stream Editor) is probably the most popular programming utility that handles the text stream under Linux. It’s very powerful and can be used to very complex daily jobs. …
Wine (WINE IS NOT AN EMULATOR) is an excellent alternative on LINUX if you want to run some windows program quickly instead of installing virtual machines or double boot. …
Defining a function/procedure in Linux BASH is quite similar to other high-level languages. functionName() { # content goes here } However, passing parameters inside the function is somehow different, …