CLInt
CLInt is a smart CLI generator for BASH scripts
File Explorer
- .gitignore
- changelog
- clint.sh
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
done
View Details ▼
done
This shell keyword is used with `for`, `while`, `select`, and `until` to mark the end of a loop.
tldr for
View documentation for the `for` keyword:
tldr while
View documentation for the `while` keyword:
tldr select
View documentation for the `select` keyword:
esac
View Details ▼
esac
This shell keyword is used to end a `case` statement.
tldr case
View documentation for the `case` keyword:
shift
View Details ▼
shift
Move positional parameters.
shift
Remove the first positional parameter:
shift {{n}}
Remove the first `n` positional parameters:
