Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jerryfzhang/removelinebreaks
This is a simple python program to help you remove all line breaks in a selected text file.
https://github.com/jerryfzhang/removelinebreaks
beautify minify parser python
Last synced: 14 days ago
JSON representation
This is a simple python program to help you remove all line breaks in a selected text file.
- Host: GitHub
- URL: https://github.com/jerryfzhang/removelinebreaks
- Owner: JerryFZhang
- License: mit
- Created: 2016-03-28T18:34:48.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-29T01:37:45.000Z (almost 9 years ago)
- Last Synced: 2024-11-07T01:48:34.997Z (2 months ago)
- Topics: beautify, minify, parser, python
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE.txt
Awesome Lists containing this project
README
# RemoveLineBreaks
This is a simple python program to help you remove all line breaks in a selected text file.Example of an input:
```
1,
2,
3,
```
Output:
```
1,2,3,
```
#How to use
- There are three ways to download the file:
1. Download the repo as a zip.
2. Download theRemoveLineBreaks.py
file only.
3. Or clone the repo by typing the following command into your terminal:```
git clone https://github.com/zhang96/RemoveLineBreaks
```
- There are two ways to run the file:
1. Run the file IDLE or other IDEs.
2. Set the directory in the terminal and then type the following command into the terminal
```
python RemoveLineBreaks.py
```
You are good to go!#Author
zhang96#License
MIT, see LICENSE.txt.