Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 825 Bytes

File metadata and controls

33 lines (23 loc) · 825 Bytes

README

Demonstrate some examples of string manipulation and variables

Examples

Bash

# Default values ${1-defaults} 
./bash_strings.sh

# Also does substring matching "hello*"
./bash_strings.sh hello world

Zsh

# Default values ${1-defaults} 
./zsh_strings.sh

# Also does substring matching "hello*"
./zsh_strings.sh hello world

Resources