if结构 #!/bin/env bash -gt ] then echo "$1 is positive" -lt ] then echo "$1 is negative" else echo "$1 is zero" fi while读取文件 while read aa do echo "$aa" done < aaa.s 数字比较 #等于 $num1 -eq $num2 #不等于 $num1 -ne $num2 #小…
.从文件读取 while read line do echo "line=$line" done < file.txt .将字符串转换为数组,并进行遍历 str="html, css, javascript, java, php, go, python" arr=(${str//,/ }) for item in ${arr[@]} do echo "item=$item" done .将目录转换为字符串 ls | xargs -d'\t'…
上篇文章 小记了: 关于 Poco::TCPServer框架 (windows 下使用的是 select模型) 学习笔记. http://www.cnblogs.com/bleachli/p/4352959.html 这儿继续学习下,poco在linux 下用cmake 编译. 从文档开始编译出错 从poco的 README 文件上可知: " BUILDING ON UNIX/LINUX/MAC OS X=============================== For building o…