An open API service indexing awesome lists of open source software.

https://github.com/wiseaidev/code_distancing

A simple script that separates the content of a given file.
https://github.com/wiseaidev/code_distancing

Last synced: about 1 year ago
JSON representation

A simple script that separates the content of a given file.

Awesome Lists containing this project

README

          

# code_distancing
A simple script that separates the content of a given file.

## How it works!

It takes a file as input and generates another file with separated lines!

```sh

$ ./distancing.py -f main.c

[*] Before Corona:

#include
int main() {
printf("Hello, World!");
return 0;
}

[*] After Corona:

#include

int main()

{

printf("Hello, World!");

return 0;

}

[*] The modified version of your file has been generated as main_out.c!

```