in reply to Using perl to call a shell command?

you could use system(), exec() or `` (the backtick operator). Each has different uses, so read the docs to decide which one suits your needs.

good luck,