Bash scripting missing ‘]’

Change

if [ -s "p1"];  #line 13

into

if [ -s "p1" ];  #line 13

note the space.

Leave a Comment