A first simple proposal

Martin Bagge / brother
2017-06-12 10:31:13 +02:00
parent 4a31914648
commit 003b44f205

13
SC2019.md Normal file

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