this post was submitted on 15 Sep 2025
104 points (96.4% liked)
Linux
9406 readers
279 users here now
A community for everything relating to the GNU/Linux operating system (except the memes!)
Also, check out:
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
The commands are object-based instead of text based. The philosophy is built around chaining commands to filter data. I'm pretty sure the nushell command would be
ls ./ | where type == file
find
in nushell looks like it's more for filtering the output of previous commands, not as a file search.https://www.nushell.sh/commands/docs/ls.html
https://www.nushell.sh/commands/docs/find.html
not my jam, but I appreciate that. I used to do 'find ./ | grep -i string' forever. I've come to prefer the more robust usage of 'find' these days, -type, -iname, etc.