I would like to execute a Linux application and return the console output to the channel.
Example
User in channel:
!ping 1.2.3.4
Eggdrop acts by running the following command and returns the output to the channel. Including new lines as shown on the Linux console.
ping -c 3 1.2.3.4
If I have a script like this, I could use it for other Linux applications as well.
Thanks!