Let's say I've got a very large amount of unrelated rar files in a single directory, and I'd like to extract them all with a single command. Something along the lines of a working command like
ls | unrar -e -
Of course, that command doesn't work, because that would make sense and commandline programs never make sense. But is there anything that actually will let unrar take the output from ls and extract every file in the piped list that it's given?
ls | unrar -e -
Of course, that command doesn't work, because that would make sense and commandline programs never make sense. But is there anything that actually will let unrar take the output from ls and extract every file in the piped list that it's given?
Comment