Module: LibPath::Constants::Windows::LibPath_Constants_Windows_Details::InvalidCharacters::Shell

Defined in:
lib/libpath/constants/windows.rb

Overview

Invalid shell characters

Constant Summary collapse

LIST =

The list of characters

[

	'*',
	'<',
	'>',
	'?',
	'|',
]
RE =

The regular expression

/[#{LIST.map { |m| Regexp.escape m }.join}]/