this post was submitted on 25 May 2025
117 points (97.6% liked)
Linux
54362 readers
700 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Fantastic list. I just want add one to this sublist. I use these often:
-printf '%f\n'
: This is a function to print in a formatted manner, typically used in C or other languages.%f
means here print the filename only, without directory or slashes. And add a newline off course, but you could also print it by space enclosed between quotes:"%f"
I prefer this over executing separateecho
process.-type f
: This will limit the output depending on the filetype you define. Heref
means files only. This can have multiple types too, in example directories or executables.-maxdepth 1
: Do not search subdirectories, only look in current directory likels
does. You could specify more depth too. And there is even-mindepth 2
in example, if you want to skip some top level directories and only search somewhere deep. This makes sense if you have organized structure of directories in example.