Como cp várias extensões de arquivo?

0

Como cp várias extensões de arquivo, como arquivos png, jpg e tif? Eu tentei:

$cp ./*.(jpg|png|tif) ../output/
>bash: syntax error near unexpected token '('
$cp ./01_reliefs/*.\(jpg\|png\|tif\) ../output/
>cp: cannot stat ‘./01_reliefs/*.(jpg|png|tif)’: No such file or directory
    
por Hugolpz 20.02.2015 / 19:05

1 resposta

3

Use a expansão de chaves , como -

$cp ./01_reliefs/*.\{jpg,png,tif} ../output/
    
por 20.02.2015 / 19:09

Tags