2007-04-20から1日間の記事一覧

wc補完関数

zsh

wcつながりで、wcの補完関数を書いてみた。 #compdef wc _arguments -s : \ {-c,--chars}"[the number of bytes]" \ {-w,--words}"[the number of words]" \ {-l,--lines}"[the number of lines]" \ "--help[show help]" \ "--version[show version]" \ "*::…

wc.py

30分シリーズ、その5。ネタ切れの予感。今回はwc。 $ python wc.py pn.rb 15 34 239 pn.rb $ python wc.py pn.rb bible 15 34 239 pn.rb 23589 39315 1609575 bible 23604 39349 1609814 total#!/usr/bin/env python import sys import re def wc(path): fil…