#!/bin/sh # deprefix # Remove the prefix from all files in the directory which have the prefix. # deprefix "pref-" for i in "$1"*;do mv "$i" "${i#"$1"}";done