Can't I go one week without having to uninstall and reinstall the damn deb file?

you are viewing a single comment's thread
view the rest of the comments
[–] 2 points 2 years ago (1 child)

Can you break the sed command down for us sed newbies? The '-i.bak' thing is throwing me off

  • source
  • parent
  • hideshow 1 child comment
  • [–] 2 points 2 years ago

    Normally sed just passes along the edited text to STDout (printing in the terminal usually).

    With the -i option it actually changes the input files. If you add an extension immediately after the -i it apparently makes a backup of the original with that extension.

  • source
  • parent