Given the following code sample:
uint8_t i, in, ni; i = in = 2; ni = 1; while (2 == i > ni) in++;
How can I replace i, in, and ni<
i, in, and ni<
Most easiest way would be to use the replace functionality of gedit.
In vi,
vi
%s/old/new/g will replace all occurrences of "old" with "new" through out the file.
%s/old/new/g