From 6b8b6b4b3d31b9540e14e8f351a65e0541580798 Mon Sep 17 00:00:00 2001 From: Dhanya Maliakal Date: Mon, 7 Aug 2017 10:31:11 +0200 Subject: [PATCH] no need of quotes for gitall.sh --- gitall.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gitall.sh b/gitall.sh index 160fc83b1..bf3376698 100755 --- a/gitall.sh +++ b/gitall.sh @@ -1,8 +1,8 @@ #!/bin/bash -git $1 +git $@ for i in sls*/; do - cd $i - echo $i - git $1 - cd .. + cd $i + echo $i + git $@ + cd .. done