1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 15:53:34 +02:00

shuf: improve usage example and its description (#5992)

This commit is contained in:
anakimluke 2021-05-20 11:50:45 -03:00 committed by GitHub
parent f714a5c746
commit 5d3be85e4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,6 +15,6 @@
`shuf {{filename}} -o {{output_filename}}` `shuf {{filename}} -o {{output_filename}}`
- Generate random numbers in range: - Generate 3 random numbers in the range 1-10 (inclusive):
`shuf -i {{1-10}}` `shuf -n {{3}} -i {{1-10}} -r`