Changing first letter of a filename to uppercase

5,221

Using the rename command:

rename -n 's/./\U$&/' *
  • -n only shows what changes will be made. After you verify the changes, run without -n to actually rename the files.
  • s/./\U$&/: substitutes the first character (.) with the uppercase (\U) of whatever was matched ($&).

Example:

$ ls
bar  foo
$ rename -n 's/./\U$&/' *
rename(bar, Bar)
rename(foo, Foo)
Share:
5,221

Related videos on Youtube

harsh vardhan
Author by

harsh vardhan

Updated on September 18, 2022

Comments

  • harsh vardhan
    harsh vardhan almost 2 years

    How can one change the first letter of a filename to uppercase using a command line?
    IS there any command line to do so?