I've been trying to switch to zsh. Something I've missed so far is this:
#!/bin/bash
mv /very/long/path/to/file1.conf{,.old}
#bash expandes that to:
mv /very/long/path/to/file1.conf /very/long/path/to/file1.conf.old
What is that called, and is there a zsh equivalent?
