mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-14 10:46:58 -07:00
* usr/bin/ctail:
- Quotes are needed around "$@" to keep parameters from splitting on spaces. - https://github.com/dustinkirkland/byobu/pull/31
This commit is contained in:
parent
cfef699184
commit
80aac3ca42
2 changed files with 5 additions and 2 deletions
5
debian/changelog
vendored
5
debian/changelog
vendored
|
@ -1,6 +1,9 @@
|
|||
byobu (5.128) unreleased; urgency=medium
|
||||
|
||||
* UNRELEASED
|
||||
* usr/bin/ctail:
|
||||
- Quotes are needed around "$@" to keep parameters from splitting
|
||||
on spaces.
|
||||
- https://github.com/dustinkirkland/byobu/pull/31
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 12 Aug 2018 11:37:11 -0500
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
if which ccze >/dev/null 2>&1; then
|
||||
tail -F $@ | ccze -A
|
||||
tail -F "$@" | ccze -A
|
||||
else
|
||||
echo "ERROR: ccze not found, hint..." 1>&2
|
||||
echo " sudo apt-get install ccze" 2>&1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue