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
You could get a hint from the documentation:
perldoc -f reverse
but I have this on the shelf:
...roboticus#!/usr/bin/perl -w print join(" ", reverse split /\s/), "\n" for (reverse <STDIN>);
|
|---|