Skip to content

Tag: linux

How can one allow python app to change system time

I am working on a project that has python software running and handling data from multiple devices and sensors on a single board computer. Since one of the devices is an INS (Inertial Navigation System) and we try to match our data with the time provided from it (which it takes from GPS satellites). For setti…

Sed with special caracters

How can I replace this with sed ? I need to replace this: to Please note that I can’t sed the enabled to disabled because it’s not only used at this location in the input file. I tried this but it didn’t change anything but gave me no error: Answer You can just use the following sed command:…