csh与bash比较
csh与bash比较:
一、csh的while循环控制结构及if then:
#!/bin/csh -f
while ($#argv >= 1)
if ("$1" == "-s") then
shift
if ($#argv >= 1) then
set source = $1
shift
endif
else if ("$1" == "-c") then
set complex = "-text"
shift
else
if ($?text == "0") then
set text = $1
endif
shift
endif
end
而bash的for结构的if then :
#!/bin/sh
for file in *
do
if grep -q POSIX $file
then
echo $file
fi
done
exit 0
即c语言风格的csh,如if endif, while end结对,而linux下的bash形式为 if fi, for do done.
比较二:
csh的判断文件存在:
if (-e $MGDATA/${text}.chunks) then
set input_files = `cat $MGDATA/${text}.chunks`
endif
而bash则是:
if test -f fred.c
then
...
fi
或者使用
if [ -f fred.c ]
then
...
fi
即方括号[]相当test命令的效果,注意:如果需要把then放在if的同一行,需要在方括号[]后加一个分号;
if [ -f fred.c ]; then
...
fi
root@host% tnpdump
Name TNPaddr MAC address IF MTU E H R
cluster1.node0 0x1100001 02:00:00:01:00:04 em0 1500 2 0 3
node0.fpc3 0x1100013 02:00:00:01:00:13 em0 1500 5 0 3
node0.fpc5 0x1100015 02:00:00:01:00:15 em0 1500 4 0 3
node0.fpc11 0x110001b 02:00:00:01:00:1b em0 1500 5 0 3
node0.fpc3.pic0 0x1100113 02:00:00:01:01:13 em0 1500 2 0 3
node0.fpc5.pic0 0x1100115 02:00:00:01:01:15 em0 1500 2 0 3
node0.fpc3.pic1 0x1100213 02:00:00:01:02:13 em0 1500 3 0 3
node0.fpc5.pic1 0x1100215 02:00:00:01:02:15 em0 1500 3 0 3
cluster1.node1 0x2100001 02:00:00:02:00:04 em0 1500 0 0 3
cluster1.node1 0x2100001 02:00:01:02:00:04 em1 1500 0 1 3
node1.re0 0x2100004 02:00:00:02:00:04 em0 1500 0 0 3
node1.re0 0x2100004 02:00:01:02:00:04 em1 1500 0 1 3
node1.fpc3 0x2100013 02:00:00:02:00:13 em0 1500 4 0 3
node1.fpc5 0x2100015 02:00:00:02:00:15 em0 1500 4 0 3
node1.fpc11 0x210001b 02:00:00:02:00:1b em0 1500 5 0 3
node1.fpc3.pic0 0x2100113 02:00:10:02:01:13 em0 1500 3 0 3
node1.fpc5.pic0 0x2100115 02:00:00:02:01:15 em0 1500 3 0 3
node1.fpc3.pic1 0x2100213 02:00:10:02:02:13 em0 1500 2 0 3
node1.fpc5.pic1 0x2100215 02:00:00:02:02:15 em0 1500 3 0 3
node1.fpc3.pic2 0x2100313 02:00:10:02:03:13 em0 1500 3 0 3
node1.fpc3.pic3 0x2100413 02:00:10:02:04:13 em0 1500 2 0 3
cluster1.master 0xf100001 02:00:00:02:00:04 em0 1500 0 0 3
cluster1.master 0xf100001 02:00:01:02:00:04 em1 1500 0 1 3
bcast 0xffffffff ff:ff:ff:ff:ff:ff em0 1500 0 0 3
bcast 0xffffffff ff:ff:ff:ff:ff:ff em1 1500 0 1 3
root@host% cat p.sh
#!/bin/csh
foreach pic (`tnpdump | awk '{print $1}' | grep pic`)
echo $pic
end
root@host% ./p.sh
node0.fpc3.pic0
node0.fpc5.pic0
node0.fpc3.pic1
node0.fpc5.pic1
node1.fpc3.pic0
node1.fpc5.pic0
node1.fpc3.pic1
node1.fpc5.pic1
node1.fpc3.pic2
node1.fpc3.pic3
csh与bash比较的更多相关文章
- FreeBSD更换默认csh为bash
1.安装bash cd /usr/ports/shells/bash make install 2.切换chsh(change shell) chsh -s /usr/local/bin/bash
- 跟着鸟哥学Linux系列笔记3-第11章BASH学习
跟着鸟哥学Linux系列笔记0-扫盲之概念 跟着鸟哥学Linux系列笔记0-如何解决问题 跟着鸟哥学Linux系列笔记1 跟着鸟哥学Linux系列笔记2-第10章VIM学习 认识与学习bash 1. ...
- bash及其特性(笔记)
bash及其特性:shell: 外壳GUI:Gnome, KDE, XfceCLI: sh, csh, ksh, bash, tcsh, zsh root, student程序:进程 进程:在每个进程 ...
- linux的学习之路--(五)bash及其特性
操作系统组成作用shell是离用户最近的程序 shell:外壳 两类 GUI:Gnome,KDE,Xfce CLI:sh, csh,ksh,bash(都是程序,就是功能支持的不同而已) 进程:在每个进 ...
- 《鸟哥的Linux私房菜》学习笔记(2)——Bash特性
一.shell的基本概念: shell 意思是外壳,它是离用户最近的程序.shell提供用户操作系统的接口,我们通过shell将输入的命令与 ...
- linux初级学习笔记五:bash特性详解!(视频序号:03_2,3)
本节学习的命令:history,alias,ualias,\CMD 本节学习的技能: bash的特性 光标跳转 查看命令历史 命令历史的使用技巧 给命令起别名 命令替换 文件名通配符 shell: ...
- linux bash变量作用域
linux bash变量作用域 一,思考一个问题,当在shell里执行某个程序时,shell是怎么找到这个程序的? shell会去$PATH环境变量定义的目录里去找这个命令.环境变量里一般包括/usr ...
- linux中的bash
一.bash的简介 操作系统都是需要通过shell跟内核来交互的,常见的shell有GUI.KDE.sh.csh.bash.tsh.zsh等. 而linux中最常用的shell就是bash. 二.ba ...
- FreeBSD csh shell 配置
在/etc/csh.cshrc里面加入: alias ls ls –G, 并重新登录 问:如何让FreeBSD的csh像bash那样按tab列出列出无法补齐的候选文件? 答:标准的方法是按Ctrl+D ...
随机推荐
- C语言文件函数
FILE *fp: 其中的FILE应该大写,它实际上是系统定义的一个结构,在stdio.h文件中.该结构中有文件名,文件状态,文件当前的读写信息等. fp是指向FILE结构的指针变量,通过fp可以找到 ...
- C#获取数据库中的Instance
如果我现在要写个代码生成器,连接数据库,那你得知道有哪些Database存在吧,不然咋整? 在VS中我们添加一个ADO.NET的实体模型 在选择数据库名称的时候就是获取了数据库中Database In ...
- WPF中的Style
一.Style基础知识 构成Style最重要的两种元素是Setter和Trigger Setter类帮助我们设置控件的静态外观风格 Trigger类帮助我们设置控件的行为风格 Setter类的Prop ...
- nginx学习之一
http://tengine.taobao.org/book/chapter_02.html
- NET免费服务器
NET免费服务器 1.先注册一个号.地址:https://appharbor.com/ 2.看看有没有你需要的插件,基本上都是免费的 3.本地创建git库 4.复制git远程仓库的地址 5.推送到远程 ...
- C++中的快速排序(使用vector和数组的不同)
1.快速排序是最最基本的排序算法之一,时间复杂度是O(nlog2(n)) 基本思想:分治法+递归 假设key为该序列的第一个元素,从后往前遍历,找到第一个小于key值的元素,将该元素赋值给左边的起始值 ...
- Week1 Team Homework #2 Introduction of team member with photos
小组成员介绍 组长:黄剑锟 11061164 组员:顾泽鹏 11061160 组员:周辰光 11061154 组员:龚少波 11061167 组 ...
- 利用JavaScript获取页面文档内容
JavaScript的document对象包含了页面的实际内容,所以利用document对象可以获取页面内容,例如页面标题.各个表单值. <!DOCTYPE html> <html ...
- .NET操作JSON
http://www.cnblogs.com/txw1958/archive/2012/08/01/csharp-json.html JSON文件读入到内存中就是字符串,.NET操作JSON就是生成与 ...
- Tesla为什么要公开专利
这是今天在网上看到Tesla公司的专利墙图片,还是比较有视觉冲击力的,正好可以转来当配图. 业界先锋Tesla日前惊世骇俗地公开电动汽车专利,赢得如潮好评:不过大家都知道,对于西方科技公司,专利历来是 ...