Cannot run program \"cd\": error=2, No such file or directory
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在项目中需要执行linux的cd命令,执行过程中遇到Cannot run program \"cd\": error=2, No such file or directory的问题。
网上找了一下,可以通过下面的方式解决问题:
String[] cmd = { "/bin/sh", "-c", "cd /var; ls -l" };
Process p = Runtime.getRuntime().exec(cmd);
利用 "sh -c" 命令,它可以让 bash 将一个字串作为完整的命令来执行
另外,想要执行一个shell脚本,可以通过如下方式执行:
String [] cmd = new String[] {"/bin/bash", "-c", shell绝对路径};
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec(cmd);
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)