Make variables lower-case
In order not to have conflicts with the system’s environment variables, custom variables are conventionally set in lower case.
This commit is contained in:
parent
f72d6efd9d
commit
020b9dc7d4
@ -2,6 +2,10 @@
|
||||
|
||||
## (unreleased)
|
||||
|
||||
### Internal
|
||||
|
||||
- make shell variables lower-case to avoid conflicts with system variables
|
||||
|
||||
## 1.0.0 (2017-11-17)
|
||||
|
||||
Initial release
|
||||
|
@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
LENGTH=${1:-32}
|
||||
cat /dev/urandom | tr -dc 'a-zA-Z0-9-_!@#$%^&*()_+{}|:<>?=' | fold -w $LENGTH | head -n 1 | grep -i '[!@#$%^&*()_+{}|:<>?=]'
|
||||
length=${1:-32}
|
||||
cat /dev/urandom | tr -dc 'a-zA-Z0-9-_!@#$%^&*()_+{}|:<>?=' | fold -w $length | head -n 1 | grep -i '[!@#$%^&*()_+{}|:<>?=]'
|
||||
|
Loading…
Reference in New Issue
Block a user