摘要:
从Windows Sublime 写好一shell脚本,移到 Linux下,发现报错,/bin/sh^M: bad interpreter: No such file or directory原因:这是不同系统编码格式引起的:在 windows系统中编辑的 .sh文件可能有不可见字符,所以在 Lin... 阅读全文
摘要:
常用格式格式一:if 条件; then 语句fi格式二:if 条件; then 语句else 语句fi格式三:if 条件; then 语句elif 条件; then 语句fi格式四:if 条件; then 语句elif 条件; then 语句else 语句fi使用示例(1)判断字符串相等if [ "... 阅读全文
摘要:
SVN 提交出错: working copy is not up-to-date svn:commit failed(details follow): svn:file "xxxxx is out of date" item is out of date svn:item "xxxx" is out of date. ---------------------- 新手犯错,te... 阅读全文