• Android

    Android is an operating system based on the Linux kernel, and designed primarily for touch screen mobile devices such as smart phones and tablet computers. Android is a Linux-based software system, and similar to Linux, is free and open source software. This means that other companies can use the Android operating developed by Google and use it in their mobile devices.Android gives you a world-class platform for creating apps and games for Android users everywhere, as well as an open marketplace for distributing to them instantly.

  • Welcome to Bashguru

    Linux is one of popular version of UNIX operating System. It is open source as its source code is freely available. It is free to use. Linux was designed considering UNIX compatibility. It's functionality list is quite similar to that of UNIX and become very popular over the last several years. Our Basic motive is to provide latest information about Linux Operating system.

  • Python Programming

    Python is a comparatively simple programming language, compared to c++. Although some of the benefits of c++ are abstracted away in python, they are replaced with an overall easier to learn language with many “intuitive” features. For this reason it is common and recommended by most professionals that people new to programming start with python.

  • Perl Programming

    Perl is an open-source, general-purpose interpreted programming language. Used often for CGI, Perl is also used for graphics programming, system administration, network programming, finance, bioinformatics, and other applications. The Perl languages borrow features from other programming languages including C, shell scripting (sh), AWK, and sed. They provide powerful text processing facilities without the arbitrary data-length limits of many contemporary UNIX command line tools, facilitating easy manipulation of text files.

  • Android

    Android is an operating system based on the Linux kernel, and designed primarily for touch screen mobile devices such as smart phones and tablet computers. Android is a Linux-based software system, and similar to Linux, is free and open source software. This means that other companies can use the Android operating developed by Google and use it in their mobile devices.Android gives you a world-class platform for creating apps and games for Android users everywhere, as well as an open marketplace for distributing to them instantly.

  • Welcome to Bashguru

    Linux is one of popular version of UNIX operating System. It is open source as its source code is freely available. It is free to use. Linux was designed considering UNIX compatibility. It's functionality list is quite similar to that of UNIX and become very popular over the last several years. Our Basic motive is to provide latest information about Linux Operating system.

Sunday, August 23, 2009

Posted by venu k
9 comments | 7:10 AM
Hard link: Hard link refers to "The specific location of physical data".Hard Link is a mirror copy of the original file.Hard links share the same inode.Any changes made to the original or Hard linked file will reflect the other.Even if you delete any one of the files, nothing will happen to the other hard links.But soft link which points to deleted hard link become a dangling soft link.You can't link a directory even within the same file system.Hard...

Friday, August 14, 2009

Posted by venu k
4 comments | 11:43 PM
#!/bin/bash#**********************************************************************************************# gcd.sh: greatest common divisor uses Eclidean algorithm# Usage : gcd.sh num1 num2 num3 .... (any number of arguments)# The algorithm used to calculate the GCD two integers is known as the Euclidean algorithm.# Based on Euclidean algorithm this script is written(Recursive method).# For checking supplied arguments are integers or not check GCD of two numbers code#***********************************************************************************************#...

Thursday, August 13, 2009

Posted by venu k
5 comments | 10:35 AM
I written three different methods to calculate GCD of two numbersMethod 1: #!/bin/bash#*******************************************************************************************# gcd.sh: greatest common divisor uses Eclidean algorithm# Usage : gcd.sh number1 number2# The algorithm used to calculate the GCD between two integers is known as the Euclidean# algorithm(Recursive method).#*******************************************************************************************#----------------------------------------------------------------------#...

Monday, August 10, 2009

Posted by venu k
6 comments | 8:57 AM
#************************************************************************************#Locking a terminal using a shell script. #This script locks your terminal until you enter correct password (open2world)#It also traps signals and interrupts #You can't terminate the script by Ctrl+c or Ctrl+\ or Ctrl+z and Ctrl+d #************************************************************************************cleartrap "" 1 2 3 20lines=`tput lines`b=`expr...