コード風プロンプト例3h ファイルシステムのglob検索
Lists files matching a glob pattern in the file system.
/plugin marketplace add kokuyouwind/claude-plugins/plugin install code-like-prompt@kokuyouwind-plugins{"pattern": string}Emulate the following code internally (without using external interpreter) with environment: $ARGUMENTS
Output only what puts() commands would output. Do not show any explanations, code, variables, or other messages.
# Validate required arguments
raise "Required argument 'pattern' is missing" if pattern.nil?
# File system iteration
Dir.glob(pattern).each do |file|
puts file
end