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
ssh [email protected] |
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
$ crontab -e | |
crontab -e Edit your crontab file, or create one if it doesn’t already exist. | |
crontab -l Display your crontab file. | |
crontab -r Remove your crontab file. | |
crontab -v Display the last time you edited your crontab file (This option is only available on a few systems.) | |
* * * * * command to be executed | |
- - - - - | |
| | | | | |
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
(Add this to /usr/local/etc/aliases.conf) | |
Alias /my_organization/my_company/my_project/ "/Users/[your_user]/Sites/projects/my_organization/my_company/my_project/web/" | |
<Directory "/Users/[your_user]/Sites/projects/my_organization/my_company/my_project/web/"> | |
Options -Indexes FollowSymlinks | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> |
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
rm -rf /path/to/directory (remove a directory) | |
rm -rf /tmp/foo (remove directory) |
NewerOlder