From 0a20a1470f79afcfdc5a552fa03f208f9462a052 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Thu, 4 Apr 2019 11:05:23 +0200 Subject: [PATCH] Add nntmux shell command script to shorten typing (ie ./nntmux nntmux:all in place of php artisan nntmux:all command) --- Changelog | 2 ++ nntmux | 3 +++ 2 files changed, 5 insertions(+) create mode 100755 nntmux diff --git a/Changelog b/Changelog index f3096a881..9ed4fca58 100755 --- a/Changelog +++ b/Changelog @@ -1,3 +1,5 @@ +2019-04-04 DariusIII + * Chg: Add nntmux shell command script to shorten typing (ie ./nntmux nntmux:all in place of php artisan nntmux:all command) 2019-04-03 DariusIII * Chg: Update tmux install script to install Tmux version 2.9 * Chg: Update used libraries diff --git a/nntmux b/nntmux new file mode 100755 index 000000000..2de119cdf --- /dev/null +++ b/nntmux @@ -0,0 +1,3 @@ +#!/bin/sh + +php artisan "$@"