Mac 终端在使用 tab 补全命令时默认大小写敏感,通过以下设置方法可以忽略大小写,方法同样适用于 iTerm2. 打开终端输入以下命令: nano .inputrc 将以下命令复制进去: set completion-ignore-case on set show-all-if-ambiguous on TAB: menu-complete 然后按下 control + O 之后回车保存,重启终端即可(注意是 control 不是 command). 终端重启后,就会发现已经忽略大小写了.
Mac Item2自动远程连接服务器 1.编写脚本 vi test #!/usr/bin/expect set PORT 端口 set HOST ip set USER root set PASSWORD 密码 spawn ssh -p $PORT $USER@$HOST expect { "yes/no" {send "yes\r";exp_continue;} "*password:*" { send "$PASSWORD\r&qu
To jump between words and start/end of lines in iTerm2 follow these steps: iTerm2 -> Preferences (⌘ + ,) Open the “Keys” tab Add the following Global Shortcut Keys Move cursor one word left Keyboard Combination: ⌥ + ← Action: Send Hex Code Code: 0x1b
(一)string:文本常量和模板 1.函数 import string ''' string模块在最早的Python版本中就已经有了.以前这个模块中提供的很多函数已经移植到str对象中,不过这个模块仍然保留了很多有用的常量和类来处理str对象 ''' # 函数capwords会把一个字符串中的所有单词的首字母变成大写 s = "when i was young, i'd listen to the radio" print(s) # when i was young, i'd lis