Skip to content

Commit 8e011f3

Browse files
committed
docs(readme): 📝 Small edits
1 parent 0b171f1 commit 8e011f3

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

37_guids/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ echo "$(( ( RANDOM % 10 ) + 1 ))"
5151

5252
```sh
5353
LC_CTYPE=C tr -dc A-Za-z0-9 < /dev/random | head -c 60 | xargs
54+
# or
55+
head /dev/urandom | tr -dc a-f0-9 | head -c 40
5456
```
5557

5658
## cksum
@@ -62,6 +64,12 @@ This technique can be used for consistent hashing
6264
echo $(echo "hashingstring" | cksum | cut -f 1 -d \ )
6365
```
6466

67+
##
68+
69+
```sh
70+
head /dev/urandom | tr -dc a-f0-9 | head -c 40
71+
```
72+
6573
## Resources
6674

6775
* /dev/random example [here](https://gist.github.com/5c0tt/b9f452a9076daca4fa35)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Steps [README.md](./02_job_functions/README.md)
172172
## 03 - Pipe filters
173173

174174
Demonstrates how read from stdin stream and process it.
175-
Steps [README.md](./03_pipe_filter_function/README.md)
175+
Steps [README.md](./03_pipe_filter_functions/README.md)
176176

177177
## 04 - Trap handlers
178178

0 commit comments

Comments
 (0)