mirror of
https://github.com/koreader/koreader.git
synced 2025-12-13 20:36:53 +01:00
A string like `1E2` is interpreted as `100` (`1×10²`):
```bash
▹ echo 0E036904 | awk '{ if ($1) print $1 }'
▹ echo 0E036904 | awk '{ if ($1!="") print $1 }'
0E036904
```