История изменений
Исправление
naKovoNapalBaran,
(текущая версия)
:
sed -i '/^\s*[^[:space:]].*\/\//s:^\([[:space:]]*\)\(.*\)\(\/\/.*\)$:\1\3\n\1\2:'
получается
//
/
// here
printf("some\" // literal"); // comment
нужно
///
// literal"); // comment // here
printf("some\"
Исправление
naKovoNapalBaran,
:
sed -i '/^\s*[^[:space:]].*\/\//s:^\([[:space:]]*\)\(.*\)\(\/\/.*\)$:\1\3\n\1\2:'
получается
//
/
// here
printf("some\" literal"); // comment
нужно
///
// comment // here
printf("some\" literal");
Исходная версия
naKovoNapalBaran,
:
sed -i '/^\s*[^[:space:]].*\/\//s:^\([[:space:]]*\)\(.*\)\(\/\/.*\)$:\1\3\n\1\2:'
получается
//
/
// here
printf("some\" literal"); // comment
нужно
///
// comment // here
printf("some\" literal");