This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ln -s /folder/source -n /folder/target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function tutup(id){ | |
document.getElementById(id).style.visibility='hidden'; | |
} | |
function buka(id){ | |
document.getElementById(id).style.visibility='visible'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#find /var/www/ -type d -print0 | xargs -0 chmod 755 | |
#find /var/www/ -type f -print0 | xargs -0 chmod 644 |
NewerOlder