hpr4043 :: Uncommon Commands, Episode 1
A summary of the three command line commands, look, shuf, and xargs
Hosted by Deltaray on Wednesday, 2024-01-31 is flagged as Clean and is released under a CC-BY-SA license.
cli, command line, linux, uncommon commands.
(Be the first).
The show is available on the Internet Archive at: https://archive.org/details/hpr4043
Listen in ogg,
spx,
or mp3 format. Play now:
Duration: 00:10:16
general.
Commands covered in this episode:
- look
- shuf
- xargs
The find command for running file:
find . -type f -size +10M | xargs file
The grep syntax for matching 4 to 8 character long words:
grep -E "^[a-z]{4,8}$"
The full diceware making command:
look . | grep -E "^[a-z]{4,8}$" | shuf | xargs -n4 | head