Code Monkey home page Code Monkey logo

xsh-stdlib's Introduction

xsh-stdlib

Compilation of common functions that shell script developers find themselves writing again and again in their daily basis. Sort of standard library for the shell but well, not so standard I guess. Proven to work with Bash and Zsh.

Disclaimer: This project is mainly an investment in my future self and is not intented for production use. That said, the automated tests and shell checks ensure a minimum of quality.

Usage

Use the bundle utility to extract the functions required into a single chunk:

bin/bundle prompt::yesno

Standard output:

## START OF BUNDLE
## 2022-06-16T13:11+02:00

prompt::yesno() {
  local text="$1"
  local default="yes"
  if (( $# > 1 )); then
    default=$2
  fi
  
  local p="$(style::green ${PROMPT_SYMBOL}) $(style::bold ${text}) "
  echo -n "$p"
  if is_yes $default; then
    echo -n "$(style::dim \(Y/n\)) "
  else
    echo -n "$(style::dim \(y/N\)) "
  fi
  
  read output
  is_yes $output || (str::is_empty "$output" && is_yes $default)
}


style::green() {
  # missing function
}


style::dim() {
  # missing function
}


str::is_empty() {
  [[ -z "$1" ]]
}

## END OF BUNDLE

xsh-stdlib's People

Contributors

mikybars avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.