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 ...
随机推荐
- js中ajax异步导致的一些问题
问题1:ajax默认是异步,所以在ajax中对外面定义的变量赋值,不能正确赋值 $("form").submit( var flag; $.ajax({ type: 'GET', ...
- Gartner2014年魔力象限(商业智能和分析平台)
- 【jquery】 API讲解 内部培训资料
资料在百度云盘 一.jquery API讲解 1.jquery api如何使用 jquery api http://www.hemin.cn/jq/ 2.常用api讲解 选择器: 通过$()获取 ...
- java package and import
1.Package Package类的主要作用是解决命名冲突.package中所存放的所有文件,一般分一下就分这三种 1,java程序源文件,扩展名为.java. 2,编译好的java类文件,扩展名为 ...
- Log4j详细使用教程
日志是应用软件中不可缺少的部分,Apache的开源项目log4j是一个功能强大的日志组件,提供方便的日志记录.在apache网站:jakarta.apache.org/log4j 可以免费下载到Log ...
- VBS基础篇 - RegExp 对象
正则表达式(RegExp)对象下面的代码说明了RegExp对象的用法: Function RegExpTest(patrn, strng) Dim regEx, Match, Matches '创建变 ...
- android开发 java与c# 兼容AES加密
由于android客户端采用的是AES加密,服务器用的是asp.net(c#),所以就造成了不一致的加密与解密问题,下面就贴出代码,已经试验过. using System; using System. ...
- execl执行解释器文件以及shell命令
问题描述: execl执行解释器文件以及shell命令 问题解决: 具体源文件:
- BZOJ3550: [ONTAK2010]Vacation
3550: [ONTAK2010]Vacation Time Limit: 10 Sec Memory Limit: 96 MBSubmit: 91 Solved: 71[Submit][Stat ...
- mybatis集成spring的事务管理
第一 创建一个测试实体 public class Order { private int id; private String orderName; public Order(String order ...