114
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 20 Mar 2025
114 points (97.5% liked)
Open Source
35359 readers
226 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
- !libre_culture@lemmy.ml
- !libre_software@lemmy.ml
- !libre_hardware@lemmy.ml
- !linux@lemmy.ml
- !technology@lemmy.ml
Community icon from opensource.org, but we are not affiliated with them.
founded 5 years ago
MODERATORS
One thing I like about knowing
find
(andgrep
for that matter) is that you know it will be installed everywhere. It makes working on remote servers so much easier, especially if you can't install any new packages with your user permissions.Even without install permissions, as a non-root user you can grab binaries generally. Store them in
~/.local/bin
and add them to your $PATH via~/.bashrc
.I've been using bin for a few weeks now and find it great for situations like this. Grab the binary, put it in your $PATH. Then just grab binaries from Github;
bin install github.com/sharkdp/fd
and it plops the binary in your~/.local/bin
folder. Works for updates, too;I was cursed with FD on my first Linux machine and now it's one of the first things I download when I set up a new machine :(
Use whatever works for you!