Tag Archives: bash

bash scripts

Bash script for GitHub to fix bad commit branch.

One mistake is to have changed in the [master] branch instead of [mymain]. This can be fixed with this bash script:

Hope this help’s !!

Bash: Get IP and IPv6 address and interfaces.

First use this commands to see your IP and IPv6 address and interfaces.

Now if you want to use this every day, just open your .bashrc file from your home folder. Add these functions to the .bashrc file:

Now open a new terminal shell and use it:

Linux .bashrc to extract many archives

This is just a new function to uncompressing many files like: .tar.bz2,.tar.gz,.bz2,.rar,.gz,.tar,.tbz2,.tgz,.zip,.Z,.7z Open .bashrc file from home/user folder. With your text editor and add the next function on the end of the file.

Open a new terminal. This will work with the new function from .bashrc.

Simple bash script to create folders, files and images .

How to create a series of directories using a standard format.

Let’s see the result :

Delete all this folder is easy, just use this command:

How to create a series of text files using a standard format.

Let’s see the result :

How to create a series of random… Read More »

Simple bash script : scan and convert the image in JPG format.

I use to Linux commands: scanimage and convert. We can see the script below:

Write the script in a text file. Named the script with this name scan.sh. Run this :

The output will be:

You can use any name for the output. As we see in this example I used firstscan.

Parsing files and rename …

Sometimes you have to rename files. This can be tiring when we do it manually. Command sed may be helpful in this case. I’ll take a simple example. I will create a working directory called work. We have to create files with the command:

The result should be :

Try these commands to… Read More »