我想在我的JSch连接中使用别名。我成功构建了与Linux-Server的连接。
在Linux-Server中,ls -l
的别名为ll
。
当我在PuTTY中键入别名时我没有问题,但是通过JSch我得到以下错误:
bash: ll: command not found
这到底是怎么回事?这是我的代码的预览:
package test;
import java.io.InputStream;
import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
import com.jcraft.jsch.UIKeyboardInteractive;
import com.jcraft.jsch.UserInfo;
public class SSHConnection {
private static String host = "", username = "", password = "";
private static int port = 22;
private static String[] commands = {"ll /", "df -h"};
public static void main(String[] arg) {
try {
JSch jsch = new JSch();
Session session = jsch.getSession(username, host, port);
session.setPassword(password);
UserInfo ui = new MyUserInfo() {
public void showMessage(String message) {}
public boolean promptYesNo(String message) {
return true;
}
};
session.setUserInfo(ui);
session.connect();
for (String command : commands) {
Channel channel = session.openChannel("exec"); // runs commands
((ChannelExec) channel).setCommand(command); // setting command
channel.setInputStream(null);
((ChannelExec) channel).setErrStream(System.err); // Error input
InputStream in = channel.getInputStream();
channel.connect();
byte[] temp = new byte[1024]; //temporary savings
System.out.println("Hostname:\t" + host + "\nCommand:\t" +
command + "\n\nResult:\n----------");
while (true) {
// reads while the inputStream contains strings
while (in.available() > 0) {
int i = in.read(temp, 0, temp.length);
if (i < 0) break;
System.out.print(new String(temp, 0, i));
}
if (channel.isClosed()) {
if (in.available() > 0) continue;
if (channel.getExitStatus() != 0) { // Error-Check
System.out.println("----------\nExit-status: " +
channel.getExitStatus() + "\n\n");
} else {
System.out.println("\n\n");
}
break;
}
// pauses the code for 1 s
try { Thread.sleep(1000); } catch (Exception e) {}
}
channel.disconnect();
in.close();
}
session.disconnect();
} catch (Exception a) {
a.printStackTrace();
}
}
public static abstract class MyUserInfo implements UserInfo, UIKeyboardInteractive {
public String getPassword() { return null; }
public boolean promptYesNo(String str) { return false; }
public String getPassphrase() { return null; }
public boolean promptPassphrase(String message) { return false; }
public boolean promptPassword(String message) { return false; }
public void showMessage() { }
public String [] promptKeyboardInteractive(String destination,
String name,
String instruction,
String[] prompt,
boolean[] echo) {
return null;
}
}
}
非常感谢您的帮助!
编辑:
我忘了告诉你,登录和命令df -h
没有问题。
答案 0 :(得分:1)
正确的解决方案是不要使用别名;它们旨在为交互式使用提供便利。如果您有一个非交互式的复杂别名,请将其转换为常规shell脚本,将文件保存在$PATH
中,并将其标记为可执行文件。或者将其转换为函数。即使是交互式使用,函数实际上也优于别名,也适用于非交互式shell。
话虽如此,你总是能够实现它。您执行的命令可以是,例如,
private static String[] commands = {"bash -O expand_aliases -c 'll /'", "df -h"};
如果您需要明确source
别名定义,您可能需要将换行符走私到该命令行中; manual对此有一点警告。 (请阅读所有内容,特别是最后一句。)
当然,对于这个简单的事情,正确的解决方案是运行标准命令ls -l
并忘记别名。它的便携性也更好;虽然许多网站都有这个别名,但它绝不能保证存在。 (就个人而言,我在设置帐户时所做的第一件事就是删除这些“事实上的标准”别名。)
答案 1 :(得分:0)
ll
别名通常在~/.bashrc
文件中定义。当您使用shell登录时,此.bashrc
运行并设置别名。
一种方法是在JSch登录后运行它:
. ~/.bashrc
如果在ll
中找不到~/.bashrc
定义(在etc/profile, ~/.bash_profile, ~/.bash_login and ~/.profile
中),请在PUTTY中使用alias
命令并将结果写入脚本文件。然后在JSch登录后运行该脚本。
$ alias
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
$alias > my-script
$chmod +x my-script