What does the below statement say exactly?
my @dirs = qw(fred|flintstone <barney&rubble> betty );
The complete story is:
my $tarfile = "something*wicked.tar";
my @dirs = qw(fred|flintstone <barney&rubble> betty );
system "tar", "cvf", $tarfile, @dirs;
This has been taken from Learning Perl, 4th Edition.
The result that the system command
will run on shell is:
tar cvf fred|flintstone <barney&rubble> betty
But does this command has a meaning on unix?