
Linux Shell
daeees
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
If statement in linxu shell
Be careful of the blank in the following statements.[[]] is a new feature in bash 3.0 for string comparision.{{}} is a new feature in bash 3.0 for integer comparision.so we can use "==, >=, Example:if [[ "1" == "1" ]]; then echo "1 equals 1"fiexit原创 2010-06-30 15:06:00 · 613 阅读 · 0 评论 -
Sharing files between windows and linux
<br />In hype-v, only legacy network adapter can be used in linux vm.<br /> <br />sharing files between linux and windows:<br />mount -t cifs -o username=x,password=x //host/ /mnt/x<br /> <br />Notice: Please expose your 445 port.原创 2010-07-06 20:10:00 · 549 阅读 · 0 评论