mirror of
https://github.com/Erreur32/cheat.git
synced 2024-12-22 21:52:12 +01:00
24 lines
399 B
Ruby
Executable file
24 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.'
|