Tag: linux
The fork() is one of the important methods that allows multiprocess/multitasking in Linux operating system. The following C code can be compiled in Linux. #include <unistd.h> int main() { …
July 11, 2012
algorithms, batch script, beginner, code, code library, implementation, linux, multithreading, programming languages, tricks
In , the implementation of a sleep-sort algorithm is presented via the Python code. This article will shortly presents the implementation in Linux BASH Shell Script, which demonstrates the …
Visual Studio 2010 is a great tool under Windows to develop .NET applications. In Linux, there is a open source project, which is called “Mono“. It is a great …
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 …
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. …