I have a script that opens different files at the same time.
My problem is that when running system () in an alias that I defined in bash that points to / home / user 1 / Software / nc, perl tells me that it cannot execute the alias because it is not there file / directory at current location. I know that an alias works, because when I call it directly in the shell, it opens perfectly.
Funny, I can make the system ("firefox") in my script order, but not in an alias. How to use this alias in this script without breaking it?
source
share