• Stars
    star
    100
  • Rank 328,775 (Top 7 %)
  • Language
    Ruby
  • License
    MIT License
  • Created over 4 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Terminal exit codes.
tty logo

TTY::Exit Gitter

Gem Version Actions CI Build status Code Climate Coverage Status Inline docs

Terminal exit codes for humans and machines.

The goal of this library is to provide human friendly and standard way to use exit status codes in command line applications. Instead of saying exit(64), you can say exit_with(:usage_error). Both indicate a failure to the parent process but the :usage_error is so much nicer! Wouldn't you agree? That's why tty-exit gathers a list of all the most common exit codes as used by POSIX-compliant tools on different Unix systems for you to use.

The exit statuses range from 0 to 255 (inclusive). Any other exit status than 0 indicates a failure of some kind. The exit codes in the range 64-78 are adapted from the OpenBSD sysexits.h. The codes between 125 and 128 are reserved for shell statuses as defined in Advanced Bash Scripting Guide, Appendix E. The codes in the 129-154 range correspond with the fatal signals as defined in signal.

TTY::Exit provides independent terminal exit codes component for TTY toolkit.

Installation

Add this line to your application's Gemfile:

gem 'tty-exit'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install tty-exit

Contents

1. Usage

To exit from any program use exit_with method. Instead of a number, you can use a readable name for the exit status:

TTY::Exit.exit_with(:usage_error)

The above will exit program immediately with an exit code indicating a failure:

puts $?.exitstatus
# => 64

All the reserved exit statuses have a matching exit message. To display a default message, as a second argument to exit_with you can pass :default value:

TTY::Exit.exit_with(:usage_error, :default)

That will produce the following user friendly message:

# => "ERROR(64): Command line usage error"

The preferred way is to include TTY::Exit module in your code:

class Command
  include TTY::Exit

  def execute
    exit_with(:config_error, :default)
  end
end

This will print an error message and return appropriate exit status:

cmd = Command.new
cmd.execute
# => "ERROR(78): Configuration Error"
puts $?.exitstatus
# => 78

To see the full list of reserved exit codes go to 2.8 exit_codes section.

2. API

2.1 exit_code

There are many built-in exit codes that can be referenced using a name.

For example to return an exit code denoting success, you can use :ok or :success:

TTY::Exit.exit_code(:ok) # => 0
TTY::Exit.exit_code(:success) # => 0

Any other exit status than 0 indicates a failure of some kind. For example, when a command cannot be found use :not_found:

TTY::Exit.exit_code(:not_found)
# => 127

You can also use an exit code directly:

TTY::Exit.exit_code(127)
# => 127

2.2 exit_message

One of the downsides of exit codes is that they are not very communicative to the user. Why not have both? An exit code and a user friendly message. That's what exit_message is for. All the reserved exit codes have corresponding user friendly messages.

For example, when returning exit code 64 for usage error:

TTY::Exit.exit_message(:usage_error)
TTY::Exit.exit_message(64)

Will return:

# => "ERROR(64): Command line usage error"

The default messages are used by the exit_with method and can be overwritten by a custom one.

2.3 exit_with

To exit program with an exit code use exit_with. This method accepts a name or a code for the exit status.

TTY::Exit.exit_with(:usage_error)
TTY::Exit.exit_with(64)

Both will produce the same outcome.

As a second argument you can specify a user friendly message to be printed to stderr before exit. To use predefined messages use :default as a value:

TTY::Exit.exit_with(:usage_error, :default)
# => "ERROR(64): Command line usage error"

Optionally, you can provide a custom message to display to the user.

TTY::Exit.exit_with(:usge_error, "Wrong arguments")
# => "Wrong arguments"

Finally, you can redirect output to a different stream using :io option. By default, message is printed to stderr:

TTY::Exit.exit_with(:usage_error, io: $stdout)

Since TTY::Exit is a module, you can include it in your code to get access to all the methods:

class Command
  include TTY::Exit

  def execute
    exit_with(:usage_error, :default)
  end
end

2.4 register_exit

If the provided exit codes don't match your needs, you can add your own using the register_exit method.

For example, to register a custom exit with :too_long name and the status 7 that will notify user and programs about too many arguments do:

class Command
  include TTY::Exit

  register_exit(:too_long, 7, "Argument list too long")

  def execute
    exit_with(:too_long, :default)
  end
end

Then when the command gets run:

cmd = Command.new
cmd.execute
# =>
# ERROR(7): Argument list too long

2.5 exit_reserved?

To check if an exit code is already reserved by Unix system use exit_reserved?. This is useful in situations where you want to add it your command line application custom exit codes. The check accepts only integer numbers in range 0 to 255 inclusive:

TTY::Exit.exit_reserved?(126) # => true
TTY::Exit.exit_reserved?(100) # => false

2.6 exit_valid?

The exit statuses range from 0 to 255 (inclusive). The exit_valid? method helps you check if an exit status is within the range or not.

TTY::Exit.exit_valid?(11) # => true
TTY::Exit.exit_valid?(522) # => false

2.7 exit_success?

Any other exit status than 0 indicates a failure of some kind. The exit_success? is a more descriptive way to determine if a program succeeded or not.

TTY::Exit.exit_success?(0) # => true
TTY::Exit.exit_success?(7) # => false

2.8 exit_codes

You can access all the predefined exit codes and their names with exit_codes method:

TTY::Exit.exit_codes
# =>
# "{:ok=>0, :success=>0, :error=>1, :shell_misuse=>2, :usage_error=>64, :data_error=>65, ... }"

2.9 exit_messages

To see what default messages are for the predefined exit codes use exit_messages:

TTY::Exit.exit_messages
# =>
# "{0=>"Successful termination", 1=>"An error occurred", 2=>"Misuse of shell builtins", 64=>"Command line usage error", ... }"

The exit statuses range from 0 to 255 (inclusive). Any other exit status than 0 indicates a failure of some kind. The exit codes in the range 64-78 are adapted from the OpenBSD sysexits.h. The codes between 125 and 128 are reserved for shell statuses as defined in Advanced Bash Scripting Guide, Appendix E. The codes in the 129-154 range correspond with the fatal signals as defined in signal.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/piotrmurach/tty-exit. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the TTY::Exit project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

Copyright

Copyright (c) 2020 Piotr Murach. See LICENSE for further details.

More Repositories

1

tty

Toolkit for developing sleek command line apps.
Ruby
2,472
star
2

tty-prompt

A beautiful and powerful interactive command line prompt
Ruby
1,418
star
3

github

Ruby interface to GitHub API
Ruby
1,132
star
4

finite_machine

A minimal finite state machine with a straightforward syntax.
Ruby
802
star
5

pastel

Terminal output styling with intuitive and clean API.
Ruby
628
star
6

rspec-benchmark

Performance testing matchers for RSpec
Ruby
584
star
7

tty-spinner

A terminal spinner for tasks that have non-deterministic time frame.
Ruby
421
star
8

tty-progressbar

Display a single or multiple progress bars in the terminal.
Ruby
415
star
9

loaf

Manages and displays breadcrumb trails in Rails app - lean & mean.
Ruby
404
star
10

tty-command

Execute shell commands with pretty output logging and capture stdout, stderr and exit status.
Ruby
397
star
11

tty-markdown

Convert a markdown document or text into a terminal friendly output.
Ruby
303
star
12

tty-logger

A readable, structured and beautiful logging for the terminal
Ruby
291
star
13

github_cli

GitHub on your command line. Use your terminal, not the browser.
Ruby
264
star
14

tty-table

A flexible and intuitive table generator
Ruby
183
star
15

tty-box

Draw various frames and boxes in your terminal window
Ruby
177
star
16

awesome-ruby-cli-apps

A curated list of awesome command-line applications in Ruby.
Ruby
159
star
17

rack-policy

Rack middleware for the EU ePrivacy Directive compliance in Ruby Web Apps
Ruby
147
star
18

tty-pie

Draw pie charts in your terminal window
Ruby
138
star
19

necromancer

Conversion from one object type to another with a bit of black magic.
Ruby
135
star
20

strings

A set of useful functions for transforming strings.
Ruby
127
star
21

coinpare

Compare cryptocurrency trading data across multiple exchanges and blockchains in the comfort of your terminal
Ruby
109
star
22

strings-case

Convert strings between different cases.
Ruby
95
star
23

tty-reader

A set of methods for processing keyboard input in character, line and multiline modes.
Ruby
85
star
24

tty-option

A declarative command-line parser
Ruby
84
star
25

merkle_tree

A merkle tree is a data structure used for efficiently summarizing sets of data, often one-time signatures.
Ruby
83
star
26

tty-screen

Terminal screen detection - cross platform, major ruby interpreters
Ruby
83
star
27

verse

[DEPRECATED] Text transformations
Ruby
71
star
28

tty-cursor

Terminal cursor movement and manipulation of cursor properties such as visibility
Ruby
68
star
29

supervision

Write distributed systems that are resilient and self-heal.
Ruby
66
star
30

tty-file

File manipulation utility methods
Ruby
65
star
31

tty-config

A highly customisable application configuration interface for building terminal tools.
Ruby
61
star
32

benchmark-trend

Measure performance trends of Ruby code
Ruby
59
star
33

tty-font

Terminal fonts
Ruby
58
star
34

lex

Lex is an implementation of lex tool in Ruby.
Ruby
56
star
35

tty-tree

Print directory or structured data in a tree like format
Ruby
56
star
36

strings-truncation

Truncate strings with fullwidth characters and ANSI codes.
Ruby
49
star
37

tty-pager

Terminal output paging - cross-platform, major ruby interpreters
Ruby
39
star
38

tty-color

Terminal color capabilities detection
Ruby
35
star
39

slideck

Present Markdown-powered slide decks in the terminal.
Ruby
34
star
40

strings-inflection

Convert between singular and plural forms of English nouns
Ruby
31
star
41

tty-link

Hyperlinks in your terminal
Ruby
31
star
42

tty-platform

Operating system detection
Ruby
29
star
43

tty-sparkline

Sparkline charts for terminal applications.
Ruby
29
star
44

tty-editor

Opens a file or text in the user's preferred editor
Ruby
27
star
45

communist

Library for mocking CLI calls to external APIs
Ruby
25
star
46

splay_tree

A self-balancing binary tree optimised for fast access to frequently used nodes.
Ruby
24
star
47

equatable

Allows ruby objects to implement equality comparison and inspection methods.
Ruby
24
star
48

minehunter

Terminal mine hunting game.
Ruby
23
star
49

rotation.js

Responsive and mobile enabled jQuery plugin to help create rotating content.
JavaScript
22
star
50

strings-numeral

Express numbers as string numerals
Ruby
20
star
51

strings-ansi

Handle ANSI escape codes in strings
Ruby
19
star
52

benchmark-malloc

Trace memory allocations and collect stats
Ruby
19
star
53

tty-which

Cross-platform implementation of Unix `which` command
Ruby
17
star
54

tty-runner

A command routing tree for terminal applications
Ruby
12
star
55

benchmark-perf

Benchmark execution time and iterations per second
Ruby
12
star
56

impact

Ruby backend for Impact.js framework
Ruby
8
star
57

queen

English language linter to hold your files in high esteem.
Ruby
8
star
58

pastel-cli

CLI tool for intuitive terminal output styling
Ruby
7
star
59

dotfiles

Configuration files for Unix tools
Vim Script
7
star
60

tty-markdown-cli

CLI tool for displaying nicely formatted Markdown documents in the terminal
Ruby
7
star
61

static_deploy

Automate deployment of static websites
Ruby
6
star
62

tenpin

Terminal tenpin bowling game
Ruby
4
star
63

tytus

Helps you manage page titles in your Rails app.
Ruby
3
star
64

tty.github.io

TTY toolkit website.
SCSS
2
star
65

peter-murach.github.com

Personal webpage
JavaScript
2
star
66

wc.rb

A Ruby clone of Unix wc utility.
Ruby
2
star
67

exportable

Rails plugin to ease exporting tasks.
Ruby
1
star
68

capistrano-git-stages

Multistage capistrano git tags
Ruby
1
star
69

tabster

Ruby
1
star
70

leek

Cucumber steps and RSpec expectations for command line apps
Ruby
1
star
71

unicorn.github.io

Website for the github_api and github_cli ruby gems.
CSS
1
star
72

tty-color-cli

CLI tool for terminal color capabilities detection
Ruby
1
star
73

finite_machine.github.io

Website for finite_machine Ruby gem
SCSS
1
star
74

strings-wrapping

Wrap strings with fullwidth characters and ANSI codes
Ruby
1
star