Executing shell commands, system()

Shell commands may be executed using backticks (grave accents):

my @files = `ls -1`;

or with the help of the system() function:

system( "cp $file_src $file_dest");

Mind that double quoted strings and backticked strings are subject to variable interpolation.