loomy@lemy.lol to Raspberry Pi@programming.devEnglish · 11 days agoWhat is some cool stuff you can do with a Raspberry Pi 2?message-squaremessage-square15fedilinkarrow-up126
arrow-up126message-squareWhat is some cool stuff you can do with a Raspberry Pi 2?loomy@lemy.lol to Raspberry Pi@programming.devEnglish · 11 days agomessage-square15fedilink
minus-squareGeometrinen_Gepardi@sopuli.xyzlinkfedilinkEnglisharrow-up2·11 days agoWhat’s your strategy for finding terminal commands in the situation you mentioned; no compgen and little available documentation?
minus-square𞋴𝛂𝛋𝛆@lemmy.worldlinkfedilinkEnglisharrow-up1·11 days agoNot at my computer with my scripts, but you can grab the path variable and loop over each entry with ls. I often end up brute forcing this and piping it to /tmp/delete then I can just grep the file. First thing I do is add bash if possible.
What’s your strategy for finding terminal commands in the situation you mentioned; no compgen and little available documentation?
Not at my computer with my scripts, but you can grab the path variable and loop over each entry with
ls
. I often end up brute forcing this and piping it to/tmp/delete
then I can justgrep
the file. First thing I do is add bash if possible.