Create and Copy Multiple Files with Brace Expansions in Bash

Cameron Nokes
InstructorCameron Nokes
Share this video with your friends

Social Share Links

Send Tweet
Published 6 years ago
Updated 5 years ago

Brace expansions are commonly used with the cp or mv commands in order to dynamically generate strings. In this lesson, we'll use a brace expansion to shorten a command like cp index.js index.js.backup to cp index.js{,.backup}. We'll also see how brace expansions can generate sequences. For example, touch test-{1..10} will generate the arguments to touch to create 10 test files.

Note that the tree command that I use in this lesson has to be installed.

Instructor: [00:00] Let's say I want to create a backup of a file. I want the backup to retain the same name as the file but just append .backup on the end. I'll just go ahead and create a dummy file here. If I wanted to create a backup of the file, I would do copy index.js.

[00:14] Instead of passing the file name there again, I can do braces -- that's why it's called a brace expansion as it uses braces -- and do comma and then .backup. Let's see how that works. Cool. That works just like we wanted.

[00:27] Another thing I can do with brace expansions is create several folders with the same structure. If I wanted to do a monorepo style setup, I could do packages and then I'll have my different package names here.

[00:41] Then I want each one to have a source folder in it. Let's do that and then see how that came out. Yeah, that's the folder structure I wanted.

[00:51] Let's dive into a little bit how it works a bit more, so let's do a basic example. Let's do echo and do pre. I'm going to do A, B, C there and braces and then post. Brace expansions follow this kind of format. There's what's called a preamble which is the string that occurs before our braces, and then there's a postscript which occurs after it.

[01:14] This is a list of strings. We can see when we run it, it basically iterates through this list and then prepends or appends the preamble and the postscript as needed.

[01:25] Know that this also supports empty items in the list. If we go back to our copy example, we'll just use echo instead. We had index.js, and then we had an empty element and m.backup.

[01:42] If we echo that out, we can see that that's exactly the arguments that we need to pass to the copy command. Basically, when we run this with copy, the brace expansion gets interpreted, and these arguments gets passed to copy and then copied exactly as we need to, which just saves a lot of typing along the way.

[01:59] Another thing brace expansions can do is rearranges. For example, if I do echo, brace, two dots, and then 10, it's going to interpret this as an integer sequence, and it fills in the missing numbers from that range.

[02:16] The same applies to letters. This can be useful for generating a lot of test files. For example, if I do touch and I do tests through 10, let's list that out. What you see here is all my test files that I created.

[02:31] Note that this works because the touch command accepts multiple inputs. Not all commands do that, so you have to check the commands documentation before you can be sure something like this will work.

egghead
egghead
~ 17 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today