On 02/07/2012 05:49 AM, [email protected] wrote: > is there any way I could suppress the warning given by chmod +x?
You can suppress all warnings with the shell command: chmod +x file 2>/dev/null;: This is usually not a good idea. The warnings are there for a reason.
