This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: base-files: New files to fix permission issues (was Re: 1.7.10/1.7.11: .Net programs started from a cygwin console may fail.)


From: Corinna Vinschen

> Thanks for the review.  Like this?

If you're open to improvements, the form
	x=$(($x + 1))
could arguably be improved with any of the following:
	x=$((x + 1))
	let x=x+1
	((x=x+1))
	((x++))
	((++x))

--Ken Nellis

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]