Created
September 15, 2022 23:06
-
-
Save luckylittle/ab1c96a1e12e50963dfa12a6fe00e96e to your computer and use it in GitHub Desktop.
How to read complete line in `for` loop with spaces
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IFS=$'\n'; for course in $(cat mkdir.txt); do mkdir ${course}; done; unset IFS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
01-Introduction | |
02-Explain Consul Architecture | |
03-Deploy a Single Datacenter | |
04-Register Services and Use Service Discovery | |
05-Access the Consul Key Value (KV) | |
06-Back up and Restore | |
07-Register a Service Proxy | |
08-Secure Agent Communication | |
09-Secure Services with Basic ACLs | |
10-Use Gossip Encryption | |
11-HashiCorp Cloud Platform - Consul | |
12-Practice |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment