20

I often find myself copy-pasting long path in order to create a copy of a file

cp /path/to/file/file1 /path/to/file/file1.bkp

Is there an alternative utility that will NOT require me to type the path/to/file twice? Something like -

nameOfExecutible /path/to/file/file1 'bkp'

Note: I don't want to do a cd to file1s parent directory.

Jeff Schaller
  • 67,283
  • 35
  • 116
  • 255
user13107
  • 5,335
  • How is this Question about copying files (with cp being the solution) a duplicate of a Question about using path within mv command? I suggest this valuable Question be re-opened. – Basil Bourque Jul 23 '19 at 21:50

1 Answers1

36

Yes,

cp /path/to/file/file1{,.kbp}

That will get expanded automatically to cp /path/to/file/file1 /path/to/file/file1.kbp

daisy
  • 54,555