最終更新 1759078419

anthony's Avatar anthony revised this gist 1759078419. Go to revision

1 file changed, 4 insertions

random_str.sh(file created)

@@ -0,0 +1,4 @@
1 + #!/bin/bash
2 + random_str() {
3 + tr -dc A-Za-z0-9 </dev/urandom | head -c 13; echo
4 + }
Newer Older