bash string to lower case 3. März 20113. März 2011 prego Schreib einen Kommentar ab bash v.4 $ FOO="This Is A Test" $ echo $FOO This Is a Test $ echo ${FOO,,} this is a test$ FOO="This Is A Test" $ echo $FOO This Is a Test $ echo ${FOO,,} this is a test