#TIL you can create multiple folders under a directory with a single command.
mkdir -p cool-fedi-project/{postgres-data,redis-data}
Which creates cool-fedi-project and then both postgres-data and redis-data underneath!
⭐1
@box464 You can even have that in the middle of the path, so you could have written it as mkdir -p cool-fedi-project/{postgres,redis}-data
⭐2