Show
Ignore:
Timestamp:
07/03/08 23:10:18 (5 months ago)
Author:
cho45
Message:

いろいろバグってた

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dotfiles/screen/cho45/.screen/pid2screen

    r15126 r15127  
    55pid = ARGV[0] 
    66tty = `/bin/ps -o tty= -p #{pid}`.strip 
    7 win = Pathname.glob("/tmp/screen-tty-*").find {|i| i.read[tty] }.read 
     7win = Pathname.glob("/tmp/screen-tty-*").find {|i| i.read[tty] } 
    88if tty.empty? || !win 
    99        exit 1 
    1010else 
    11         puts win[/\d+$/] 
     11        puts win.to_s[/\d+$/] 
    1212        exit 0 
    1313end