Skip to content

Instantly share code, notes, and snippets.

@cognominal
Last active May 20, 2021 14:39
Show Gist options
  • Save cognominal/042d86211a0fb898b7401779c78f025e to your computer and use it in GitHub Desktop.
Save cognominal/042d86211a0fb898b7401779c78f025e to your computer and use it in GitHub Desktop.
rename files in the current folder starting with numbers by prepending 0 to get 3 digits numbers
#! /usr/bin/env raku
my @files = dir;
for @files {
rename $_, sprintf("%03s", $0 ) ~ $1 if /(\d+)(.*)/;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment