view bin/dfi @ 682:88888f40c628

[vimrc] Disable indent plugin Less predictable behavior with it enabled.
author nanaya <me@nanaya.pro>
date Fri, 24 Jun 2022 22:50:19 +0900
parents 006c273399fb
children
line wrap: on
line source

#!/usr/bin/env python

import os
import sys

rows = sys.stdin.readlines()

for row in rows:
  if row.find(' ', 1, 49) == -1:
    row = row[0:48] + ' ' + row[48:]
  data = row.split(None, 5)
  print '|'.join(data)