summaryrefslogtreecommitdiff
path: root/fmt/deprefix
blob: da51657f0cffff7da885c8a330c0f3e0a8ea0f6b (plain) (blame)
1
2
3
4
5
6
#!/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