The following method, removes the last character from a bash variable by using a regular expression that matches any character.
1
VAR=${VAR%?};
The functionality ${string%substring} deletes shortest match of $substring from the back of $string.
The question mark ? matches zero or one of the previous regular expression. It is generally used for matching single characters.
So by using ? as our $substring we instruct bash to match any character at the end of the variable and remove it.
The following method, removes the first character from a bash variable by using a regular expression that matches any character. The functionality ${string#substring} deletes shortest match of $substring from the front of $string. The question mark ? matches zero or one of the previous regular expression. It is generally used…
The following code will find all files that match the pattern 2016_*_*.log (all the log files for the year 2016). To avoid finding log files from other services than the Web API service, we filter only the files that their path contains the folder webapi. Specifically, we used "/ServerLogs/*/webapi/*" with…
A variable in bash (and any POSIX-compatible shell) will be in one of the three following states: unset set but empty set and not empty Variables in bash do not have data types. A variable can contain a number, a character, a string of characters or the empty string. Assigning…