Is it possbile to execute linux commands with java? I am trying to create a web servlet to allow ftp users to change their passwords without ssh login access. I would like t
Use:
Runtime.getRuntim().exec("Command");
where Command is the command string you want to execute.