Skip to content

Instantly share code, notes, and snippets.

View jasper-zanjani's full-sized avatar
🏠
Working from home

Jasper Zanjani jasper-zanjani

🏠
Working from home
View GitHub Profile
@magnetikonline
magnetikonline / README.md
Last active March 16, 2024 02:00
Bash string manipulation cheatsheet.

Bash string manipulation cheatsheet

Assignment
Assign value to variable if variable is not already set, value is returned.

Combine with a : no-op to discard/ignore return value.
${variable="value"}
: ${variable="value"}