Remove first n character from bunch of file names with cut June 10, 2023 by Tarik rename -n 's/.{5}(.*)/$1/' * The -n is for simulating; remove it to get the actual result.