in reply to Re^2: how to a specific group of files from source directory to destination directory
in thread how to a specific group of files from source directory to destination directory

asdfghijkl:

You could get a hint from the documentation:

perldoc -f reverse

but I have this on the shelf:

#!/usr/bin/perl -w print join(" ", reverse split /\s/), "\n" for (reverse <STDIN>);
...roboticus