Category: technical
June 14, 2012
batch script, beginner, I/O File, implementation, javascript, programming languages, technical, tools / utilities, VBA, vbscript
There are currently 3 ways to hide your Script Code (VBScript or Javascript) if you don’t want others to access to your code easily. For example, you might want …
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. …
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, …