IsTTY

master

Helps you decide whether your file is a terminal device.
dduan/IsTTY

IsTTY

Is your file a terminal device (TTY)? This little library provides answers.

API

All API returns a boolean answer!

// For standard file descriptors
IsTTY.standardOutput
IsTTY.standardInput
IsTTY.standardError
// If you don't like the abbreviation:
IsTerminal.standardOutput
IsTerminal.standardInput
IsTerminal.standardError

// Arbitrary file descriptors:
fileIsTTY(descriptor: yourFile)
// Without abbreviation
fileIsTerminal(descriptor: yourFile)

// Foundation is supported:
// Using stdout as example
FileHandle.standardOutput.isTTY
FileHandle.standardOutput.isTerminal
// Works with arbitrary file handle:
myFileHandle.isTTY
myFileHandle.isTerminal

Install

Use SwiftPM.

.package(url: "http://github.com/dduan/IsTTY", from: "0.1.0")

License

MIT.

Description

  • Swift Tools 5.0.0
View More Packages from this Author

Dependencies

  • None
Last updated: Thu Oct 17 2024 20:10:53 GMT-0900 (Hawaii-Aleutian Daylight Time)