Recognize rbash

This commit is contained in:
crschnick 2024-01-10 01:43:45 +00:00
parent faf1b6b4c7
commit 140b734142

View file

@ -22,8 +22,9 @@ public class ShellDialects {
public static ShellDialect ZSH;
public static ShellDialect CSH;
public static ShellDialect FISH;
public static ShellDialect UNSUPPORTED;
public static ShellDialect CISCO;
public static ShellDialect RBASH;
public static List<ShellDialect> getStartableDialects() {
return ALL.stream().filter(dialect -> dialect.getOpenCommand() != null).filter(dialect -> dialect != SH_BSD).toList();
@ -50,8 +51,8 @@ public class ShellDialects {
ASH = byId("ash");
SH = byId("sh");
SH_BSD = byId("shBsd");
UNSUPPORTED = byId("unsupported");
CISCO = byId("cisco");
RBASH = byId("rbash");
}
@Override