I have several different perl scripts that I am running simultaneously. All of them take the same text file as input (textfile.txt). Is there a way that I could write the file name once instead of writing it several times?
$ perl myscript1.pl textfile.txt & perl myscript2.pl textfile.txt &
perl myscript3.pl textfile.txt & perl myscript4.pl textfile.txt &
perl myscript5.pl textfile.txt & perl myscript6.pl textfile.txt &
perl myscript7.pl textfile.txt & perl myscript8.pl textfile.txt