====== String Operations in Bash/Shell ======
Quelle((http://www.softpanorama.org/Scripting/Shelloram... . This is shown in the following script:
#!/bin/bash
export INFILE=${1-"infile"}
export OUTFILE=${2-... ticle. If you're interested in more hints about bash (or other stuff I've written about), please take ... he extension of all .html files to .htm.
#!/bin/bash
# quickly convert html filenames for use on a dos
====== Bash Shell Tests ======
Quelle((http://tldp.org/LDP/abs/html/comparison-ops.html))
===== Other... metic and string comparisons ===
<code>
#!/bin/bash
a=4
b=5
# Here "a" and "b" can be treated eith... the arithmetic and string comparisons,
#+ since Bash variables are not strongly typed.
# Bash permits integer operations and comparisons on variables
#+