I keep getting bitten by this... I have a few executable PHP files and on those files, the executable permission is being cleared when copying from one side to the other in a folder compare:
Source file:
[~/public_html/tandem/tdom] # ls -l test_executable.php
-rwxr-xr-x 1 redfe0 redfe0 32 Nov 7 09:39 test_executable.php
Copied to other side:
[~/public_html/tdom] # ls -l test_executable.php
-rw-r--r-- 1 tande6 tande6 32 Nov 7 09:39 test_executable.php
How can I set up BC to copy all file permissions when copying files?
Source file:
[~/public_html/tandem/tdom] # ls -l test_executable.php
-rwxr-xr-x 1 redfe0 redfe0 32 Nov 7 09:39 test_executable.php
Copied to other side:
[~/public_html/tdom] # ls -l test_executable.php
-rw-r--r-- 1 tande6 tande6 32 Nov 7 09:39 test_executable.php
How can I set up BC to copy all file permissions when copying files?
Comment