/usr/bin/mux is in tmuxinator 0.7.0-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/usr/bin/ruby
$: << File.expand_path("../../lib/", __FILE__)
require "thor"
require "tmuxinator"
name = ARGV[0] || nil
if ARGV.length == 0 && Tmuxinator::Config.local?
Tmuxinator::Cli.new.local
elsif name && !Tmuxinator::Cli::COMMANDS.keys.include?(name.to_sym) &&
Tmuxinator::Config.exists?(name)
Tmuxinator::Cli.new.start(name, *ARGV.drop(1))
else
Tmuxinator::Cli.start
end
|