Skip to content

Instantly share code, notes, and snippets.

@ideodora
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ideodora/c0b880bc8a09473252ed to your computer and use it in GitHub Desktop.
Save ideodora/c0b880bc8a09473252ed to your computer and use it in GitHub Desktop.
PARAMETER EXPANSION ${} 記法 置換
# ${} で変数展開する際に置換する?
#
# echo "${VAR/SEARCH/REPLACE}"
HOGE="abcdef"
echo $HOGE
#>> abcdef
echo "${HOGE/abc/xyz}"
#>> xyzdef
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment