摘要:
Db2 connect to xxx Db2 “LIST TABLESPACES SHOW DETAIL” Tablespace ID = 7 Name = TSASNAA Type = Database managed space Contents = All permanent data. La 阅读全文
摘要:
编码格式修改 在windows下开发,写好的shell脚本,放到linux上执行,往往会因为编码格式的问题存在兼容问题: -bash: ./lbs-circle-server.sh: /bin/sh^M: bad interpreter: No such file or directory 这是由于 阅读全文
摘要:
linux方法 1) sed '/$/a\\n' test.txt,可以在文件的每行末尾添加一个回车 2) sed '$a\eof' test.txt,可以在文件的末尾添加'eof' 2) sed '$a\eof' test.txt,可以在文件的末尾添加'eof' 配合find命令实现批量添加 fi 阅读全文