I have to execute a command whose path is unknown. I can reach the environment paths, but how can I use them? For example if there are 5 distinct paths, which one I should try in execv ?
/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
After parsing these paths in an array, how can I use them? Should I try execv for each of them?
execv. If you get an error repeat with the next path. – Joachim Pileborg Nov 22 '12 at 8:42