G od Murugan: devotional good morning wishes in Tamil Start every morning with the grace of Lord Murugan Wallpaper app through our specially curated collection of good morning wishes in tamil, good morning devotional images. This app is designed for devotees who wish to receive daily blessings and share them with loved ones. This is the tamil devotional app for good morning wishes, created for god murugan (காலை வணக்கம்) along with kalai vanakkam. This app includes images for lord murugan wallpapers, good morning wishes with pictures, status, devotional quotes, cards, etc,.in. God Murugan App
Tamizh Tech Tutorial 3 Linux Tips to Show File Contents with Line Numbers (3 Examples) In this tutorial, you will learn 3 tips to display the file contents along with line numbers in linux / unix with examples Three Tips Using cat command with option -n Using bat command without option Using nl command without option 1. Using cat command with option -n This command is used to display the file contents with special option -n Syntax cat -n filename Where, f ilename is an existing input filename. Example 2. Using bat command This is the latest linux command, similar to cat command This command is also used to display the file contents without any option. NOTE By default, this command is not installed on your machine. So you need to install it externally based on your distribution before using it. Syntax bat filename Where, f ilename is an existing input filename. Examp...
If…elif…else Statement This is one of the type of selection statement. Note It is an important to note that, the simple if, if else and if-elif-else statements should be closed by fi keyword. Syntax if [ condition ] then true statement elif [ condition ] then true statement else false statement fi Example 1 - Shell Style Code Biggest of Three Numbers Source Code echo "Enter the inputs: " read a b c if [ $a -gt $b -a $a -gt $c ] # -a indicates logical AND then echo "$a is big" elif [ $b -gt $c ] then echo "$b is big" else echo "$c is big" fi Output NOTE It is not possible to directly use logical operator symbols in shell script. The statement below the shows the example Logical Operators Operator ...
Comments
Post a Comment