A voir également:
- Au secours , besoin de mettre des CR/LF
- Logo cr - Accueil - Intelligence artificielle
- Cr agricole sms - Guide
- Leboncoin comment cr - Guide
- Comment cr - Guide
- Créer un compte Google : toutes les méthodes simples - Guide
3 réponses
Et hop ! Un petit programme en Python qui fait ça:
-----cut135.py---cut here----------
# This script is written in Python - http://www.python.org
import sys
chaine = sys.stdin.read(135)
while len(chaine) > 0 :
sys.stdout.write(chaine+'\n')
chaine = sys.stdin.read(135)
--------cut here----------
Fichier à découper en entrée : a.txt
Fichier en sortie : b.txt
python cut135.py < a.txt > b.txt
Et voilou !
-----cut135.py---cut here----------
# This script is written in Python - http://www.python.org
import sys
chaine = sys.stdin.read(135)
while len(chaine) > 0 :
sys.stdout.write(chaine+'\n')
chaine = sys.stdin.read(135)
--------cut here----------
Fichier à découper en entrée : a.txt
Fichier en sortie : b.txt
python cut135.py < a.txt > b.txt
Et voilou !
CR= carriage return
LF= line feed