#!/home/d/docx/bin/ruby -w
#
=begin
Description: Grab a specific line from a file
Usage: program
=end
input = File.open(ARGV[0], "r")
input.each_line { |line| puts "#{$1}" if line =~ /^Description: (.*)/ }
요 소스에서
$1 의 의미가 뭔가요
요 파일 그대로 Argument로 넣으면
Grab a specific line from a file
요런 결과가 나오던데요..