I am wondering - how can I move all the files in a directory except those files in a specific directory (as \'mv\' does not have a \'--exclude\' option)?
ls | grep -v exclude-dir | xargs -t -I '{}' mv {} exclude-dir