MySQL is a relational database management system used for storing data in tabular format. It provides high flexibility for the…
Cloud is not just storage, it is a trump card for Enterprise Risk Management (ERM). There are several advantages of…
Generate md5 checksum find /var/www -type f -exec md5sum {} \; > /tmp/www-md5.list Above command will generate md5 checksum for…
Virtual Hosting provides us to host multiple domains (websites) on a single server. It is a concept of resource sharing…
SCP (Secure Copy) is a command line tool for Linux systems for securely transferring files from a remote server to…
Question – How to remove extra spaces from a string using JavaScript? A space (” “) character is used to…
phpMyAdmin is the most popular web application for managing MySQL database servers. Many users also used it to access databases…
The ASPState database is used by Microsoft’s ASP.NET Session State Service to store session data. By default, session state service…
We can use an internal field separator (IFS) variable to parse an array. Let’s use an example script, where first…
Command SNAME=$(basename “$(test -L “$0” && readlink “$0” || echo “$0″)”) While running a bash script using Linux terminal the…