StackOverflow 文件 Bash 教程 Bash 引數擴充套件 從字串的開頭刪除模式 從字串的開頭刪除模式 Created: November-22, 2018 最短匹配: $ a='I am a string' $ echo "${a#*a}" m a string 最長的匹配: $ echo "${a##*a}" string 引數間接子字串和子陣列