HOME | DD

#icon #linux #logo #pids #lspids
Published: 2022-07-08 19:20:29 +0000 UTC; Views: 387; Favourites: 2; Downloads: 0
Redirect to original
Description
A little logo/icon for my new C++ cli program called 'LSPIDS'.
LSPIDS is a way to list all running process ID's that can be found in the /proc directory in Linux (or any OS that uses such a system). A much quicker (literally 100 times faster) solution than do something like this in 200ms:
find /proc -mindepth 1 -maxdepth 1 -type d -iname "[0-9]*" -exec basename {} \;
you can instead just do (with a couple of options) in 2ms:
lspids
This program is finished and can be found here:
LSPIDS @ GitHub