A first simple proposal

Martin Bagge / brother
2017-06-12 10:31:24 +02:00
parent 003b44f205
commit 14ab41c005

13
SC2018.md Normal file

@@ -0,0 +1,13 @@
## Use '[:lower:]' to support accents and foreign alphabets.
### Problematic code:
```sh
PLATFORM="$(uname -s | tr 'a-z')"
```
### Correct code:
```sh
PLATFORM="$(uname -s | tr '[:lower:]')"
```