Tag: change permission
-
Symfony2 New Web Project Creation On OS X
Once symfony installer installed # Linux, Mac OS X $ symfony new project_name After doing this; new project will be created with fresh download from source.
-
OS X Top Essential Terminal Commands
Rename a file or folder via command line mv oldName newName Remove directory with files rm -rf dir_name_to_delete -r “recursive” -f “force” (suppress confirmation messages) See hidden files in directory ls -a ls: “Directory listing”, -a:”Show with hidden files/folders” -l:”vertical detailed list view” Delete the content of your app/cache and app/logs folders rm…