From 40cfddb4b847d727f5d575b19540c608a3d779e6 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 2 Jun 2010 08:24:03 +0200 Subject: [PATCH] remove unnecessary bash-ism the following patch removes unnecesary dependency on bash. Signed-off-by: YAMAMOTO Takashi Signed-off-by: Jens Axboe --- fio_generate_plots | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fio_generate_plots b/fio_generate_plots index 4e2cb08e..ff479a7d 100755 --- a/fio_generate_plots +++ b/fio_generate_plots @@ -1,8 +1,8 @@ -#!/bin/bash +#! /bin/sh # Use gnuplot to generate plots from fio run with -l and/or -w -if [ "$1"x == "x" ]; then +if [ "$1"x = "x" ]; then echo Need title as arg exit 1 fi -- 2.25.1