view bin/dfi @ 692:a04ba615362c

[bashrc] back to prioritizing gnuls for openbsd It should be fixed by now...? Can't remember what the problem was though.
author nanaya <me@nanaya.pro>
date Sun, 23 Oct 2022 01:56:26 +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)