It’ll give a list of processes with vim in the name. You could also just pgrep vim but that’s too easy.
Comment on new rule
rockSlayer@lemmy.world 1 year agoI don’t know what exactly this will do, but I know enough about the terminal to get the feeling this is a bad idea
Vash63@lemmy.world 1 year ago
TheEntity@kbin.social 1 year ago
It searches for a process named
vimusinggrep(which searches within provided lines), but sincegrep vimalso containsvim, we then excludegreptoo, so only the actualvimprocess gets found without thegrep vimprocess. Sounds a lot like this post, doesn't it?rockSlayer@lemmy.world 1 year ago
Well that’s anticlimactic. Here I thought grep would continuously ping ps aux and softlock the terminal or something