Seq Command in Linux

Seq Command in Linux: Linux seq command generates a list of numbers – you can use this in scripts and many other functions. Let’s see the examples. Basic usage of commandJust typing seq 5 will create 5 numbers If you type two numbers, the first number will be the start and another one will be … Read more

Array in bash scripting.

Array in bash scripting is the great way to enhance your bash scripting, so let’s dive further into it. Array is used when you want to use your data in more structured manner, for example, if you have list of students and you want them to be stored then you can’t create variable for each … Read more

About core dump.

If you have ever debugged some application, you may have heard about the term called core dumps. Here we will see about the core dump. What is a core dump? When a computer program is crashed, you can copy all the contents of the RAM to a hard disk. It can be then analyzed to … Read more