mirror of
https://github.com/jimeh/tmuxifier.git
synced 2026-02-19 01:46:40 +00:00
14 lines
206 B
Bash
Executable File
14 lines
206 B
Bash
Executable File
#! /usr/bin/env bash
|
|
set -e
|
|
[ -n "$TMUXIFIER_DEBUG" ] && set -x
|
|
|
|
# Provide tmuxifier help
|
|
if [ "$1" == "--help" ]; then
|
|
echo "usage: tmuxifier version
|
|
|
|
Outputs Tmuxifier version."
|
|
exit
|
|
fi
|
|
|
|
echo "0.6.0"
|