This is a cheatsheet to help you write markdown for GitHub quickly, showing you the basics.
this is italic and this is bold . another italic and another bold
this is important
text. and percentage signs: % and %
#!/bin/bash | |
default_network_range="192.168.0.0/24" | |
default_username="root" | |
default_port=22 | |
# Prompt user for input and set default values if not provided | |
echo "Enter network range (default: $default_network_range): " | |
read network_range | |
network_range=${network_range:-$default_network_range} |