expect ssh批量登录服务器

  • Post author:
  • Post category:小程序

expect批量登录服务器,操作完成退出,自动登录下一个 0x0 代码 #!/usr/bin/expect -f set f [open passwd.txt r] while { [gets $f line] >= 0 } { set timeout 600 set host [lindex $line 0] set password [lindex $line 1] spawn ssh roo…

继续阅读 expect ssh批量登录服务器

VIM替换(替换单个、一行、全文)

  • Post author:
  • Post category:其他

替换 语法 :[range] s/{old-pattern}/{new-pattern}/[flags] range确定范围,不写默认为当前行。 % # 表示整个文件内容 . # 表示当前行 $ # 表示最后一行 m,n # 表示从第m行到第n行 ,n # 表示从当前行到第n行 n, # 表示从第n行到当前行 n # 指定行 +n # 表示当前行之后的n行 old-pattern为要被替换的字符串…

继续阅读 VIM替换(替换单个、一行、全文)

Solidity的ABI编码函数详解:encode、encodePacked、encodeWithSignature、encodeWithSelector

  • Post author:
  • Post category:solidity

编码函数: abi.encode abi.encodePacked abi.encodeWithSignature abi.encodeWithSelector 解码函数: abi.decode,用于解码被abi.encode的数据 一、测试合约 为了测试这几个函数的功能,我们写了这样的测试合约: // SPDX-License-Identifier: UNLICENSED pragma soli…

继续阅读 Solidity的ABI编码函数详解:encode、encodePacked、encodeWithSignature、encodeWithSelector