In this bash tutorial, you will get convert word to number in bash script with examples.This is implemented using for loop, tr command, switch case in shell script…
How to Count Word Frequency in Bash Script
In this bash tutorial, you will get the program about how to count word frequency in bash script. This is done by using for loop, tr…
Bash Script – How to convert Number to Words
In this tutorial, you will see how to convert numbers to words using bash script. This shell script can be done with the help of switch case statement…
Linux Commands – How to use cat, zcat, tac and lolcat commands in Linux
In this tutorial, you will understand the differences between the linux commands like cat, zcat, lolcat and tac 1. cat command Usages Syntax …
How to Copy File in Linux (3 Tips) | Linux Tips and Tricks
In this tutorial, you will learn three tips for file copy in linux terminal using three different ways. THREE DIFFERENT WAYS 1. Copy File using cp command Syntax …
How to use Boxes Command in Linux
In this linux tutorial, you will find how to use boxes command in linux with an example. Boxes Command in Linux NOTE Syntax echo message | boxes Example echo…
How to Create Webservice in Java Netbeans
In this java tutorial, you will understand how to develop web services in java WEB SERVICES TYPES OF WEB SERVICES 1. SOAP Web Services (XML Web Services) 2. REST…
How to use echo command in linux tutorial (7 Examples)
ECHO COMMAND FILE OPERATIONS USING ECHO COMMAND IN UNIX echo command Practical Usages of echo command 1. File Creation using echo command Syntax Example 2. Text Appending to File using echo command…
How to use Static Variable in C++
In this c++ tutorial, you will learn the following STATIC VARIABLE IN C++ Local Static Variable Global Static Variable I. STATIC VARIABLE EXAMPLE (LOCAL STATIC VARIABLE) 1. SOURCE CODE #include<iostream> using namespace std;…
How to use Static Object in C++
In this tutorial, you will understand how to use static object in c++ programming with example. Static Object in C++ Local Static Object Global Static Object LOCAL STATIC OBJECT…