当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > Linux程式设计-11.ShellScript(bash)--(2)教学例

Unix/Linux
Ubuntu Linux有多流行?数据告诉你
轻松制作Linux系统启动盘的四种方法
忘记Linux密码后的另类解决方法
Linux中安装Realplayer的方法
Linux桌面环境GNOME和KDE的切换
在Linux操作系统下安装与运行GAMIT软件
学习Linux系统的九条忠告
Linux系统发展空间探索
Linux与Windows Vista系统的比较
Linux刷新主板BIOS的好方法
Linux下学C语言开发要学些什么
Ubuntu 8.04 Alpha 3新功能初体验
Ubuntu Linux下用Firefox来安装软件
客户对Linux电脑的需求的确不高
带你一起认识下linux的各种版本
手把手教你学Ubuntu
双系统卸载linux系统的方法
linux系统下的U盘病毒清除法
Linux系统22端口修改的方法
理解和掌握Linux 体验Linux的方式

Unix/Linux 中的 Linux程式设计-11.ShellScript(bash)--(2)教学例


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-01   浏览: 29 ::
收藏到网摘: n/a


  "Hello world" Shell Script
  照传统程式教学例,这一节介绍Shell Script的"Hello World"如何撰写。
  
  
  
  --------------------------------------------------------------------------------
  
  #!/bin/sh
  # Filename : hello
  echo "Hello world!"
  
  --------------------------------------------------------------------------------
  
  大家应该会注意到第一行的"#!/bin/sh"。在UNIX下,所有的可执行Script,不管是那一种语言,其开头都是"#!",例如Perl是"#!/usr/bin/perl",tcl/tk是"#!/usr/bin/wish",看您要执行的Script程式位置在那里。您也可以用"#!/bin/bash"、"#!/bin/tcsh"等等,来指定使用特定的Shell。
  echo是个bash的内建指令。
  
  
  
  --------------------------------------------------------------------------------
  
  接下来,执行hello这个script:
  要执行一个Script的方式有很多种。
  
  
  
  --------------------------------------------------------------------------------
  
  第一种 : 将hello这个档案的权限设定为可执行。
  [foxman@foxman bash]# chmod 755 hello

  执行
  [foxman@foxman bash]# ./hello
  hello world
  
  
  
  --------------------------------------------------------------------------------
  
  第二种 : 使用bash内建指令"source"或"."。
  [foxman@foxman bash]# source hello
  hello world
  或
  [foxman@foxman bash]# . hello
  hello world
  
  
  
  --------------------------------------------------------------------------------
  
  第三种 : 直接使用sh/bash/tcsh指令来执行。
  [foxman@foxman bash]# sh hello
  hello world
  或
  [foxman@foxman bash]# bash hello
  hello world
  
  
  
  --------------------------------------------------------------------------------
  
  Bash执行选项
  
  --------------------------------------------------------------------------------
  
  -c string : 读取string来当命令。
  -i : 互动介面。
  -s : 由stdin读取命令。
  - : 取消往後选项的读取。
  -norc : 不要读~/.bashrc来执行。
  -noprofile : 不要读/etc/profile、~/.bash_profile、~/.bash_login、~/.profile等等来执行。
  -rcfile filename : 执行filename,而非~/.bashrc
  -version : 显示版本。
  -quiet : 启动时不要哩唆。
  -login : 确保bash是个login shell。
  -nobraceexpansion : 不要用curly brace expansion({}符号展开)。
  -nolineediting : 不用readline来读取命令列。
  -posix : 改采Posix 1003.2标准。