摘要:
# vim parallel.sh #!/bin/bash for i in {1..4} do { ssh node$i "$1" //这里使用双引号 } & done 使用: ./parallel.sh 'yum localinstall /root/*rpm -y' //这里使用单引号 阅读全文
摘要:
class Solution: def sortSentence(self, s: str) -> str: words = s.split() li = ['']*len(words) for i in words: li[int(i[-1])-1]=i[0:-1] return " ".join 阅读全文
摘要:
class Solution: def sumBase(self, n: int, k: int) -> int: tag = True quotient = n//k #商 remainder = n%k #余数 while tag: if quotient >= k: remainder+=qu 阅读全文
摘要:
class Solution: def minOperations(self, logs: List[str]) -> int: result=0 for i in range(0,len(logs)): if logs[i]=='../': if result>0: result-=1 elif 阅读全文
摘要:
class Solution: def reorderSpaces(self, text: str) -> str: count=text.count(' ') #字符串中空格的数量 li=text.split() #默认以【空格、tab、换行、回车以及formfeed】为分隔符,将字符串分割为一个 阅读全文
摘要:
输出数字、字符串、表达式(操作数和运算符) >>> print(1) 1 >>> print('hello,world') hello,world >>> print(1+2) 3 输出到文件 >>> fp=open('E:/test.txt','a+') >>> print('hello,worl 阅读全文
摘要:
浏览器:火狐 101.0.1 点击右上角三个横杠的图表,在下拉菜单中点击设置 在弹出的页面中,找到搜索框 输入 自动播放 在下方找到自动播放,点击后面的设置 修改为 允许音频和视频 ,点击确定即可 阅读全文
摘要:
简介 git分支可以理解为不同的时间线,比如A在时间线1编写a模块,B在时间线2编写b模块,互不干扰,等到都写好了,可以进行合并。 查看分支 在Git Bash中当我们切换到某一个git目录下,会在目录后面看到一个括号,里面可能写着master,这个就是当前所在的分支,而之前讲到的HEAD指向的就是 阅读全文
摘要:
配置ssh免秘钥通讯 登录github,点击右上角用户头像,在下拉框中点击 Settings 按钮 在左侧导航栏找到 SSH and GPG keys 点击 SSH keys 后面的 New SSH key 按钮,输入自己的ssh公钥和标题(windows路径:C:\Users\Administra 阅读全文
摘要:
添加文件 git add 告诉仓库要添加的文件 git commit 向仓库提交之前add的所有文件 注:LF和CRLF都是换行符,LF是linux中的,CRLF是windows中的,git默认开启各系统的换行符自动转换。 修改文件并查看状态 git status 查看仓库当前的状态 当我们修改文件 阅读全文