上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: jQuery UI Autocomplete - Combobox Tags: 阅读全文
posted @ 2018-02-23 18:32 wblade 阅读(115) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/expect -f set pwffd [lindex $argv 0] spawn ssh cmesvr2i expect "*password:" send "$pwffd\r" expect "*#" interact 阅读全文
posted @ 2017-12-20 14:07 wblade 阅读(262) 评论(0) 推荐(0) 编辑
摘要: String doHttpPut(String rpmName, String cookie) throws UnsupportedEncodingException, IOException, ClientProtocolException, Exception { HttpPut httpPut 阅读全文
posted @ 2017-03-10 08:41 wblade 阅读(337) 评论(0) 推荐(0) 编辑
摘要: protected HttpClient getHttpClient() throws Exception { HttpClientBuilder builder = HttpClientBuilder.create(); SSLContext sc = SSLContext.getInstance 阅读全文
posted @ 2017-03-10 08:28 wblade 阅读(188) 评论(0) 推荐(0) 编辑
摘要: Session session = a.getSessionShell("user", "pwd", "host"); Channel channel = session.openChannel("shell"); OutputStream outS = channel.getOutputStream(); PrintStream commander = new Print... 阅读全文
posted @ 2017-02-19 10:40 wblade 阅读(282) 评论(0) 推荐(0) 编辑
摘要: public SSLContext createIgnoreVerifySSL() throws KeyManagementException, NoSuchAlgorithmException, KeyStoreException { SSLContext sc = new SSLContextBuilder().loadTrustMaterial(null, new Tru... 阅读全文
posted @ 2017-02-05 23:42 wblade 阅读(4109) 评论(0) 推荐(0) 编辑
摘要: System.setProperty("javax.net.ssl.trustStore", certPath); public void uploadComponent() throws Exception { HttpClient httpclient = HttpClientBuilder.create().build(); HttpPut httpget = new HttpPu... 阅读全文
posted @ 2017-02-03 17:38 wblade 阅读(1086) 评论(0) 推荐(0) 编辑
摘要: System.setProperty("javax.net.ssl.trustStore", certPath); public String getCookieString(String userId, String pwd) throws Exception { HttpClient httpc 阅读全文
posted @ 2017-02-03 17:36 wblade 阅读(849) 评论(0) 推荐(0) 编辑
摘要: grep与egrep的区别; 在linux系统环境下,我们通常使用grep命令来过滤出需要的行而egrep确很少使用,他们的区别其实很简单,grep默认不支持正则表达式,egrep默认支持正则表达式,egrep 等于 grep -E 命令。 阅读全文
posted @ 2017-02-03 16:54 wblade 阅读(1011) 评论(0) 推荐(0) 编辑
摘要: alias demoAlias1='_(){ git checkout -b $1; command2;}; _' 阅读全文
posted @ 2017-02-02 11:33 wblade 阅读(144) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页