↧
List directory names in bash shell
Here is a little trick you should know when selecting directories in a Linux bash script: Getting a list of directory names in a bash shell is a simple task: 123456789101112131415#!/bin/bash...
View ArticleExclude items in a list in a bash script
In a Linux bash script you can loop over a set of data like a list of directories, database table names etc. But you do not always want to use all the items in this list so you need to filter the...
View Article