Unix & Linux

10
Existem desvantagens em `cp --sparse = always`?

Existe alguma razão para não usar --sparse=alwaysem todas as chamadas cp? info cp diz: ‘--sparse=WHEN’ A “sparse file” contains “holes”—a sequence of zero bytes that does not occupy any physical disk blocks; the ‘read’ system call reads these as zeros. This can both save considerable disk...

10
bash: movendo arquivos com espaços

Quando movo um único arquivo com espaços no nome do arquivo, ele funciona assim: $ mv "file with spaces.txt" "new_place/file with spaces.txt" Agora eu tenho uma lista de arquivos que podem conter espaços e quero movê-los. Por exemplo: $ echo "file with spaces.txt" > file_list.txt $ for file...

10
grep comportamento estranho com palavras de uma letra

Estou removendo palavras de parada de um texto, usando aproximadamente este código Eu tenho o seguinte $ cat file file types extensions $ cat stopwords i file types grep -vwFf stopwords file Estou esperando o resultado: extensions mas recebo o (acho incorreto) file extensions É como se a...