Create Linux Bash and Windows batch scripts simultaneously with Batsh
Arrays
Batsh supports arrays, or variables that store a list of arbitrary data:
a = [1, 2, "hello"];
Batsh numbers the elements in the array consecutively, starting with 0. To access an item in the list, you need to note its index in square brackets. The following line stores 2
from array a
in variable b
:
b = a[1];
However, Batsh currently does not have any functions that can be used to supplement the array with other elements. The number of elements in an array can only be retrieved using the undocumented len
function: length = len(a);
. The benefits of arrays are therefore limited.
To Be, or Not To Be
The function exists()
, which checks whether a file exists, has proved to be much more useful than readdir()
or arrays. In the example shown in Listing 7, exists()
first tests whether the file photo1.png
is located in the /home/tim/photos/
directory.
Listing 7
Existential Question
The value returned by exists()
is then checked by the if
query: The script follows the instructions between the upper curly brackets if the file exists and the instructions in the curly brackets after else
otherwise.
If needed, you can leave out the else
. As with while
, you can put any logical expression in the parentheses of if
(e.g., if (a> b) { ... }
.
The problem in Listing 7, however, is that the path specification, /home/tim/photos
, is tailored to a Linux system, and the Batsh compiler does not translate it into the appropriate Windows counterpart, as shown in Figure 5.
Batsh cannot even tell your script whether it is running in Bash or Windows, so you have no way to change this behavior. The built-in function bash()
can carry out a Bash command assigned to it:
bash("man convert");
The Batsh compiler only translates this function if you can create a Bash script. The selection, man convert
, therefore, only appears in the Bash script, not in the Windows batch file. Similarly, the function batch()
runs a batch instruction passed in. The Batsh compiler only translates this function if you compile the script for Windows.
To the Source
The Batsh website [3] is not the only place you can compile Batsh programs: The developer has released the compiler source code under an MIT license on GitHub [2].
Batsh was written entirely in the functional programming language OCaml. Therefore, to install the compiler you need a corresponding OCaml environment, which can be found in the repositories of most distributions.
The easiest way to install Batsh is through OCaml's own package manager, OPAM, which you can install on Ubuntu using the opam package:
$ sudo apt-get install opam m4
The m4
package allows you to install some of the additional libraries used by Batsh.
The following command is supposed to load Batsh as soon as these conditions are met:
$ opam install batsh
However, I was unable to resolve the Batsh dependencies automatically on the test machine with Ubuntu 14.10.
An attempt to compile Batsh manually from the source code also failed in the lab for the same reason. To install Batsh, it should be sufficient to set up OCaml using the package manager, then download the current Batsh source code package [3], unzip it, and compile and install it using make
and make install
. Additional OCaml dependencies are listed on the GitHub site [4].
« Previous 1 2 3 4 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
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.
News
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.