Simples assim.
(bash)
for i in * ; do mv -- "$i" "${i:0:5}" ; done
Voila.
E uma explicação do Guia avançado de script de script (Capítulo 10. Manipulação de Variáveis ) , (com extra NOTA s em linha para destacar os erros nesse manual):
Substring Extraction
${string:position}
Extracts substring from
$string
at$position
.If the
$string
parameter is "*" or "@", then this extracts the positional parameters, starting at$position
.${string:position:length}
Extracts
$length
characters of substring from$string
at$position
.
NOTA falta de aspas em torno de expansões de parâmetros! echo
não deve ser usado para dados arbitrários.
stringZ=abcABC123ABCabc
# 0123456789.....
# 0-based indexing.
echo ${stringZ:0} # abcABC123ABCabc
echo ${stringZ:1} # bcABC123ABCabc
echo ${stringZ:7} # 23ABCabc
echo ${stringZ:7:3} # 23A
# Three characters of substring.
# Is it possible to index from the right end of the string?
echo ${stringZ:-4} # abcABC123ABCabc
# Defaults to full string, as in ${parameter:-default}.
# However . . .
echo ${stringZ:(-4)} # Cabc
echo ${stringZ: -4} # Cabc
# Now, it works.
# Parentheses or added space "escape" the position parameter.
The position and length arguments can be "parameterized," that is, represented as a variable, rather than as a numerical constant.
If the
$string
parameter is "*" or "@", then this extracts a maximum of$length
positional parameters, starting at$position
.
echo ${*:2} # Echoes second and following positional parameters.
echo ${@:2} # Same as above.
echo ${*:2:3} # Echoes three positional parameters, starting at second.
NOTA : expr substr
é uma extensão do GNU.
expr substr $string $position $length
Extracts
$length
characters from$string
starting at$position
.
stringZ=abcABC123ABCabc
# 123456789......
# 1-based indexing.
echo 'expr substr $stringZ 1 2' # ab
echo 'expr substr $stringZ 4 3' # ABC
OBSERVAÇÃO : Esse echo
é redundante e o torna ainda menos confiável. Use expr substr + "$string1" 1 2
.
NOTA : expr
retornará com um status de saída diferente de zero se a saída for 0 (ou -0, 00 ...).
BTW. O livro está presente no repositório oficial do Ubuntu como abs-guide
.