我們一起來學Shell shell的函式

2022-09-22 03:30:12 字數 754 閱讀 9216

我們一起來學shell - 初識shell

我們一起來學shell - shell的變數

我們一起來學shell - shell的條件判斷

我們一起來學shell - shell的迴圈控制

我們一起來學shell - shell的陣列

我們一起來學shell - shell的函式

我們一起來學shell - shell的併發及併發控制

我們一起來學shell - 正規表示式

shell 函式的本質是一段可以重複使用的指令碼**,這段**被提前編寫好了,放在了指定的位置,使用時直接調取即可

function name (

)

name (

)

執行不帶引數的函式

直接輸入函式名即可,不需要帶括號

functionname
執行帶引數的函式
functionname arg1 arg2
函式的執行總結

exit則是退出指令碼

如果將函式單獨存放為乙個檔案,在載入時需要使用source.進行載入

在函式內部一般使用local定義區域性變數僅在函式體內有效

我們一起來學Shell shell的迴圈控制

我們一起來學shell 初識shell 我們一起來學shell shell的變數 我們一起來學shell shell的條件判斷 我們一起來學shell shell的迴圈控制 我們一起來學shell shell的陣列 我們一起來學shell shell的函式 我們一起來學shell shell的併發及...

一起來學SQL(二)

insert into 語句用於向 中插入新的行。語法 insert into 表名稱 values 值1,值2,也可以指定所要插入資料的列 insert into table name 列1,列2,values 值1,值2,e.g.1 插入新的行 insert into persons value...

一起來學SQL(三)

create database 用於建立資料庫。sql create database 語法 create database database name create table 語句用於建立資料庫中的表。sql create table 語法 create table 表名稱 列名稱1 資料型別,...