Create Linux Bash and Windows batch scripts simultaneously with Batsh

Pitfalls

Unlike other programming languages, Batsh does not type-check, allowing you to assign strings to variables meant to hold integers, for example:

dn = filename("hmpf", 9876);

Listing 2 would then output the file name imagehmpf9876, which is relatively harmless in this case. However, incorrect parameters or parameters with typos can sometimes have drastic effects in more complex functions.

If you define a new variable in a function, it is only visible in that function. Consequently, you cannot access the variable b in Listing 3 outside function goodday. If you try anyway, Batsh thinks you are referring to a new variable b. New variables are empty by default, so println(b) would just output a blank line.

Listing 3

Variable Scope

 

The greeting() function in Listing 4 tries to change variable a inside a function. If you run the finished script, you see the output Hello. If you try to change a, as the greeting() function does, Batsh creates a second variable a that is only visible within the function. To prevent this, you first need to make the variable inside the function global. Listing 5, correspondingly changed, then outputs the value World.

Listing 4

Local Variable

 

Listing 5

Global Variable

 

All-Around

Consider the situation in which you need to run an image editing program 10 times to convert 10 TIFF images into the JPEG format. The Batsh while loop can help with this task.

As shown in Figure 4, this process can be achieved more quickly, crisply, and therefore more clearly in Batsh than in Bash scripts. The script performs all the instructions in curly brackets as long as the condition in the parentheses is met.In Figure 4, the numeral in number consequently increases by 1 until number contains the value 11, and you fall out of the loop. The photos can now be converted using this loop.

Figure 4: On the left, a simple Batsh while loop; on the right, the Bash equivalent.

Listing 6 shows the matching programming code. First, the while loop puts together the file names of the original and converted photos using the current number.

Listing 6

Looping

 

The Batsh function call starts an arbitrary program – here, the ImageMagick convert command – that expects the file name of the program to be executed as the first parameter. All remaining parameters are forwarded by call directly to convert.

Depending on which program is executed and how many parameters that program requires, you can pass any number of arguments in the call statement. In this example, convert must be installed on both Linux and Windows so that the resulting scripts work on both systems. Batsh is not yet familiar with the for loop frequently used in Bash scripts.

Reading Circle

Listing 6 assembles the file names, but it would be more elegant to let the script deliver the file names in a directory and then feed them one after another to convert. Batsh provides the built-in function readdir for this:

allfiles = readdir();

In the background, readdir() calls ls in Linux or dir/w in Windows and simply returns the results. However, this leads to two problems. First, you have to be careful with file names provided by ls, because they could contain special characters that Bash later interprets incorrectly. Second, readdir() simply outputs a long character string with the file names, and Batsh does not currently offer a way to split strings into individual parts.

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • SHC: Bash Script Compiler

    The Bash Shell Script Compiler converts shell scripts directly into binaries. Compiling your scripts provides protection against accidental changes, but you will have to contend with some quirks.

  • Bash Alternatives

    Don't let your familiarity with the Bash shell stop you from exploring other options. We take a look at a pair of alternatives that are easy to install and easy to use: Zsh and fish.

  • Bash Tuning

    In the old days, shells were capable of little more than calling external programs and executing basic, internal commands. With all the bells and whistles in the latest versions of Bash, however, you hardly need the support of external tools.

  • Kotlin Programming Language

    Kotlin, a small island in the Gulf of Finland, is also the name of a new programming language that aims to become a modern alternative to Java.

  • Hardware Detection

    If you need fast answers for what's inside, you can use a Bash script to obtain an inventory of hardware on your Linux system.

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News