[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#10735: chmod +x
From: |
Paul Eggert |
Subject: |
bug#10735: chmod +x |
Date: |
Tue, 07 Feb 2012 07:51:23 -0800 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:9.0) Gecko/20111222 Thunderbird/9.0 |
On 02/07/2012 05:49 AM, address@hidden 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.