mirror of
https://github.com/cheat/cheat.git
synced 2024-11-22 05:51:35 +01:00
25 lines
399 B
Ruby
Executable File
25 lines
399 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
# Create a hash of cheatsheets
|
|
cheats = {
|
|
'tar' => '
|
|
some long string
|
|
some long string
|
|
some long string
|
|
some long string
|
|
some long string
|
|
some long string
|
|
',
|
|
|
|
'git' => '
|
|
some long string about git
|
|
some long string about git
|
|
some long string about git
|
|
some long string about git
|
|
some long string about git
|
|
',
|
|
}
|
|
|
|
# output
|
|
puts cheats[ARGV[0]] || 'No cheat sheet found.'
|