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.
- Host: GitHub
- URL: https://github.com/wiseaidev/code_distancing
- Owner: wiseaidev
- License: bsd-3-clause
- Created: 2021-05-02T19:49:33.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-02T20:04:25.000Z (about 5 years ago)
- Last Synced: 2025-02-05T03:38:48.528Z (over 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!
```