ExpectIt : Trouble implementing a sudo -i

后端 未结 1 1223
我在风中等你
我在风中等你 2021-01-26 23:59

I\'m creating a web shell client and successfully created a simple terminal.

\"enter

相关标签:
1条回答
  • 2021-01-27 00:26
    expect.sendLine( command );
    String result = expect.expect( Matchers.contains(":")).getInput();
    int pos = result.indexOf(PROMPT);
    
    if (pos > -1) {
        // SUCCESS
    } else {
        // FAILURE
    }
    
    0 讨论(0)
提交回复
热议问题