萬盛學電腦網

 萬盛學電腦網 >> 服務器教程 >> shell入門

shell入門

   shell腳本一般有3種執行方法:

  1. bash直接執行

  >bash myshell.sh

  2. 重定向執行

  3. chmod添加可執行權限執行

  >chmod +x myshell.sh

  >./myshell.sh

  shell腳本開頭一般為:

  #! /bin/bash

  表示這是一個用bash解釋執行的腳本

  一個最簡單的shell腳本一般如下:

  #! /bin/bashecho This is the first bash programcal;echo Show all programps;

copyright © 萬盛學電腦網 all rights reserved