loomy@lemy.lol to Raspberry Pi@programming.devEnglish · 2 days agoWhat is some cool stuff you can do with a Raspberry Pi 2?message-squaremessage-square15linkfedilinkarrow-up127arrow-down11
arrow-up126arrow-down1message-squareWhat is some cool stuff you can do with a Raspberry Pi 2?loomy@lemy.lol to Raspberry Pi@programming.devEnglish · 2 days agomessage-square15linkfedilink
minus-squareGeometrinen_Gepardi@sopuli.xyzlinkfedilinkEnglisharrow-up2·2 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·2 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.