Posts in Category: bash

My custom .nanorc config file...

My custom .nanorc config file...

Posted on 9th Oct 2024

Yes, i admit... i use NANO and i like it! VI sucks! If you are, like me and want your NANO setup, look like mine, just overwrite yours with the one included below, or just save it like .nanorc in your home directory. Except from the colors, that you all ready see, i have enabled/disabled the fol...

Hitting an auction/buy with BASH

Hitting an auction/buy with BASH

Posted on 4th Oct 2024

Disclaimer... You shouldn't abuse the idea/script, cause this would cause problems to the server, the product page and the creator/maker of the product. For the same reason, i don't post any URLs. Recently i found a product i really liked and wanted to buy on Tindie. The problem was, that the...

Quick scan of local network...

Posted on 2nd Oct 2024

A quick way to scan your local network for devices, like a Raspberry Pi is the following: sudo arp-scan -l I use it all the time to find my RPis, so i made an alias for that. Added it to your .bash_aliases or .bashrc file like this: alias netscan="sudo arp-scan -l"