java代码:
public static void main(String[] args) throws Exception{
String cmd = "/bin/sh backup.sh ";
Process process = Runtime.getRuntime().exec(cmd);
process.waitFor();//脚本中多任务时,由于下面有destroy,所以需要此语句
process.destroy();//销毁子线程
}
backup.sh代码:
#!/bin/bash
backupTime=`date +%Y%m%d-%T`
sudo mysqldump -u root -p123uusc --quick uuyx > /home/uu/db_$backupTime.sql