首页 相关文章 Linux程式设计-11.ShellScript(bash)--(2)教学例

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


  "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...[ 查看全文 ]

Linux程式设计-11.ShellScript(bash)--(2)教学例的相关文章

手机页面
收藏网站 回到头部