浏览代码

Make up.sh POSIX compliant

Jochen Sprickerhof 5 年之前
父节点
当前提交
c5cbf1ab33
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      up.sh

+ 1 - 1
up.sh

@@ -5,7 +5,7 @@ export POSIXLY_CORRECT=1
 
 i=1
 while test $i -lt 50; do
-	print $i
+	echo $i
 	i=$((i + 1))
 done > tmp.log