Какой удобный способ удалить все псевдонимы?

No es necesario forrepetir esto.

find "$dir" -type f

generará por defecto todos los objetos encontrados.

Puedes hacer esto explícito con:

find "$dir" -type f -print

Si realmente desea iterar sobre estos, use un separador nulo yxargs:

find "$dir" -type f -print0 | xargs -0 -n1 echo

O findpropio-exec:

find "$dir" -type f -exec echo "{}" \;
1
06.07.2019, 13:18
1 ответ
unalias -a

согласно справочной странице.

5
27.01.2020, 23:15

Теги

Похожие вопросы