Мануалы и справочники Общие команды
sponge

Команда sponge: опции, ключи и примеры использования

sponge

Soak up the input before writing the output file. More information: https://linux.die.net/man/1/sponge.

  • Append file content to the source file:

cat {{path/to/file}} | sponge -a {{path/to/file}}

  • Remove all lines starting with # in a file:

grep -v '^{{#}}' {{path/to/file}} | sponge {{path/to/file}}

Изображение Выучи 10 хороших привычек для работы в UNIX от IBM