summaryrefslogtreecommitdiff
path: root/Userland/Utilities/shuf.cpp
AgeCommit message (Collapse)Author
2021-10-17shuf: Fix division by zero when no lines are readSeekingBlues
2021-05-14Userland: Migrate from arc4random_uniform() to get_random_uniform()Jean-Baptiste Boric
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-03-12Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)Andreas Kling
Good-bye LogStream. Long live AK::Format!
2021-02-28Userland: Don't leak buffer from getline in shuf programAndrew Kaster
Probably doesn't matter too too much since the program exits almost immediately after, but there's the principle of the thing to consider.
2021-01-20Userland: Implement shuf for basic shufflingBen Wiederhake