User avatar
Jeff @box464@mastodon.social
5mo
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
2
0
0
1
User avatar
🪨 @Varpie@peculiar.florist
5mo
@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
0
1
0
2