Renomeando arquivos para adicionar um sufixo

12

Eu preciso de um comando para renomear todos os arquivos no diretório de trabalho atual, de forma que o novo nome de arquivo seja o mesmo que o antigo, mas incluindo um sufixo correspondente ao número de linhas dos arquivos originais (por exemplo, se arquivo f tem 10 linhas, então deve ser renomeado para f_10 ).

Aqui está a minha tentativa (inoperante):

 linenum=$(wc -l); find * -type f | grep -v sh | rename 's/^/ec/'*
    
por Martin Yeboah 24.06.2015 / 16:34

7 respostas

13

Que tal:

for f in *; do mv "$f" "$f"_$(wc -l < "$f"); done

Por exemplo:

$ wc -l *
 10 file1
 40 file2
100 file3
$ ls
file1_10  file2_40  file3_100

Se você quiser manter as extensões (se houver), use isso:

for f in *; do 
    ext=""; 
    [[ $f =~ \. ]] && ext="."${f#*.}; 
    mv "$f" "${f%%.*}"_$(wc -l < "$f")$ext; 
done
    
por terdon 24.06.2015 / 17:58
10

Você pode experimentar este forro:

find . -maxdepth 1 -type f -exec bash -c 'mv -i "$1" "$1.$(wc -l <"$1")"' _ {} \;
  • Isso localizará todos os arquivos no diretório de trabalho atual ( find . -maxdepth 1 -type f )

  • Em seguida, estamos executando uma instância de shell sobre os arquivos encontrados para renomear os arquivos para acrescentar o número de linhas.

Exemplo:

$ ls
bar.txt spam.txt foo.txt

$ find . -maxdepth 1 -type f -exec bash -c 'mv -i "$1" "$1.$(wc -l <"$1")"' _ {} \;

$ ls
bar.txt.12 foo.txt.24 spam.txt.7
    
por heemayl 24.06.2015 / 16:46
6

Outra forma que preserva a extensão (se presente) usando rename :

for f in *; do rename -n "s/([^.]+)(\.?.*)/\_$(< "$f" wc -l)\/" "$f"; done

Se o resultado for o esperado, remova a opção -n :

for f in *; do rename "s/([^.]+)(\.?.*)/\_$(< "$f" wc -l)\/" "$f"; done
    
por kos 24.06.2015 / 18:14
5

Usando find :

find . -maxdepth 1 -type f -print0 | while read -d $'
% wc -l *
  3 doit
  5 foo

% find . -maxdepth 1 -type f -print0 | while read -d $'
find . -maxdepth 1 -type f -print0 | while read -d $'
% wc -l *
  3 doit
  5 foo

% find . -maxdepth 1 -type f -print0 | while read -d $'%pre%' f; do mv "$f" "$f"_$(grep -c . "$f"); done

% wc -l *                         
  3 doit_3
  5 foo_5
' f; do mv "$f" "$f"_$(grep -c . "$f"); done
' f; do mv "$f" "$f"_$(grep -c . "$f"); done % wc -l * 3 doit_3 5 foo_5
' f; do mv "$f" "$f"_$(grep -c . "$f"); done

Exemplo

%pre%     
por A.B. 24.06.2015 / 18:14
3

Apenas por diversão e ri uma solução com rename . Como rename é uma ferramenta Perl que aceita uma string arbitrária eval'd, você pode fazer todos os tipos de truques. Uma solução que parece funcionar é a seguinte:

rename 's/.*/open(my $f, "<", $_);my $c=()=<$f>;$_."_".$c/e' *
    
por musiKk 25.06.2015 / 13:45
2

O script abaixo cobre vários casos: o único ponto e extensão (arquivo.txt), vários pontos e extensões (arquivo.1.txt), pontos consecutivos (arquivo..foobar.txt) e pontos no nome do arquivo ( arquivo ou arquivo ..).

O script

#!/bin/bash
# Author: Serg Kolo
# Date:  June 25,2015
# Description: script to rename files to file_numlines
# written for http://askubuntu.com/q/640430/295286

# Where are the files ?
WORKINGDIR=/home/xieerqi/substitutions
# Where do you want them to go ?
OUTPUTDIR=/home/xieerqi/substitutions/output

for file in $WORKINGDIR/* ;do 
    FLAG=0
    EXT=$(printf "%s" "$file" | awk -F'.' '{printf "%s",$NF }' )  # extension, last field of dot-separated string
    # EXT="${file##*.}" # Helio's advice is to use parameter expansion, but I dont know how to use it
    if [ -z $EXT ]; then # we have a dot at the end case file. or something
        # so we gotta change extension and filename
        EXT=""
        FILENAME=$(printf "%s" "$file" | awk -F '/' '{ print $NF}' )
        # set flag for deciding how to rename
        FLAG=1
    else
        FILENAME=$( printf "%s" "$file" | awk -F '/' -v var=$EXT '{gsub("."var,"");print $NF}'   ) # filename, without path, lst in
    fi

    NUMLINES=$(wc -l "$file" | awk '{print $1}') # line count

    if [ $FLAG -eq 0 ];then
         echo "$file" renamed as "$OUTPUTDIR"/"$FILENAME"_"$NUMLINES"."$EXT"
        # cp "$file" "$OUTPUTDIR"/"$FILENAME"_"$NUMLINES"."$EXT" # uncomment when necessary
    else
        echo "$file" renamed as "$OUTPUTDIR"/"$FILENAME"_"$NUMLINES""$EXT"
        # cp "$file" "$OUTPUTDIR"/"$FILENAME"_"$NUMLINES""$EXT" # uncomment when necessary
    fi

    #printf "\n"

done

Script em ação

$./renamer.sh                                                                                                           
/home/xieerqi/substitutions/file. renamed as /home/xieerqi/substitutions/output/file._0
/home/xieerqi/substitutions/file.. renamed as /home/xieerqi/substitutions/output/file.._0
/home/xieerqi/substitutions/file.1.jpg renamed as /home/xieerqi/substitutions/output/file.1_3.jpg
/home/xieerqi/substitutions/file.1.test.jpg renamed as /home/xieerqi/substitutions/output/file.1.test_3.jpg
/home/xieerqi/substitutions/file.1.test.txt renamed as /home/xieerqi/substitutions/output/file.1.test_2.txt
/home/xieerqi/substitutions/file.1.txt renamed as /home/xieerqi/substitutions/output/file.1_2.txt
/home/xieerqi/substitutions/file.2.jpg renamed as /home/xieerqi/substitutions/output/file.2_3.jpg
/home/xieerqi/substitutions/file.2.test.jpg renamed as /home/xieerqi/substitutions/output/file.2.test_3.jpg
/home/xieerqi/substitutions/file.2.test.txt renamed as /home/xieerqi/substitutions/output/file.2.test_2.txt
/home/xieerqi/substitutions/file.2.txt renamed as /home/xieerqi/substitutions/output/file.2_2.txt
/home/xieerqi/substitutions/foo..bar.txt renamed as /home/xieerqi/substitutions/output/foo..bar_4.txt

Observe que não há linhas no arquivo. e arquivo .., portanto, a contagem de linhas é 0

Agradecimentos especiais a Terdon e Helio pela revisão do roteiro e sugestões de edições

    
por Sergiy Kolodyazhnyy 24.06.2015 / 23:22
2

Outra forma bash desenvolvida com o @Helio no bate-papo :

for file in *
do
    echo "$file"
    [[ -f "$file" ]] || continue
    [[ $file =~ (.*)(\.[^.]+)$ ]]
    cp "$file" "output/${BASH_REMATCH[1]:-$file}_$(wc -l < "$file")${BASH_REMATCH[2]}"
done

O cara monóculo de aparência estranha com um segundo cabeçote raquítico ( (.*)(\.[^.]+)$ ) deve corresponder apenas às extensões adequadas ( .foo , não .. ). Se não houver nenhuma extensão, a matriz BASH_REMATCH estará vazia. Podemos aproveitar isso usando um valor padrão para o nome do arquivo ${BASH_REMATCH[1]:-$file} e apenas usando a extensão como está.

Para lidar com arquivos de pontos, você pode usar find , como sugerido por terdon e Helio .

find -maxdepth 1 -type f -printf '%P
for file in *
do
    echo "$file"
    [[ -f "$file" ]] || continue
    [[ $file =~ (.*)(\.[^.]+)$ ]]
    cp "$file" "output/${BASH_REMATCH[1]:-$file}_$(wc -l < "$file")${BASH_REMATCH[2]}"
done
' | while IFS= read -r -d '' file do [[ $file =~ (.*)(\.[^.]+)$ ]] cp "$file" "output/${BASH_REMATCH[1]:-$file}_$(wc -l < "$file")${BASH_REMATCH[2]}" done
    
por muru 27.06.2015 / 03:27