summaryrefslogtreecommitdiff
path: root/sample/getoptlong/aliases.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2024-01-16 16:30:32 +0900
committerHiroshi SHIBATA <[email protected]>2024-01-16 17:07:10 +0900
commit4b6936aa047158c98a9ac8861d51e5e09229f8c0 (patch)
tree9dca3595126af7fd634d7d9bf15c7d4811196082 /sample/getoptlong/aliases.rb
parent3f5016178cb81536e800a9121b3804e36c9af93c (diff)
Unbundled samples for getoptlong
Diffstat (limited to 'sample/getoptlong/aliases.rb')
-rw-r--r--sample/getoptlong/aliases.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/sample/getoptlong/aliases.rb b/sample/getoptlong/aliases.rb
deleted file mode 100644
index 895254c6ae..0000000000
--- a/sample/getoptlong/aliases.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-require 'getoptlong'
-
-options = GetoptLong.new(
- ['--xxx', '-x', '--aaa', '-a', '-p', GetoptLong::NO_ARGUMENT]
-)
-options.each do |option, argument|
- p [option, argument]
-end