flyingpenguins Wiki
Strings
Compare two strings
We use the following script to compare two strings
#!/bin/bash
diff <
(
echo
"
$1
"
)
<
(
echo
"
$2
"
)