POSIX alternativa ao predicado -printf do GNU find

6

Gostaria de reescrever esses dois comandos para que eles usem apenas switches compatíveis com POSIX :

find "$TARGET_DIR" -maxdepth 1 -type d -printf '(DIR)  %f\n'
find "$TARGET_DIR" -maxdepth 1 -type f -printf '%s  %f  ' -exec file -b {} \;

-maxdepth 1 provavelmente pode ser substituído por -prune , mas -printf exigirá um redirecionamento mais complicado.

    
por eadmaster 23.02.2015 / 01:13

1 resposta

2

Tente:

find "$TARGET_DIR//." \( -name . -o -prune \) -type d -exec sh -c '
  for f do
    f=${f%//.}
    f=${f%"${f##*[!/]}"}
    f=${f##*/}
    printf "(DIR) %s\n" "${f:-/}"
  done' sh {} +

Seria mais simples para o equivalente a -mindepth 1 -maxdepth 1 :

find "$TARGET_DIR//." \( -name . -o -prune \) -type d -exec sh -c '
  for f do
    printf "(DIR) %s\n" "${f##*/}"
  done' sh {} +

Para o segundo:

find "$TARGET_DIR//." ! -name . -prune -type f -exec sh -c '
  for f do
    size=$(($(wc -c < "$f") +0)) || continue
    printf %s "$size ${f##*/} "
    file -b -- "$f"
  done' sh {} +
    
por 29.03.2017 / 14:11