find PATH/TO/FOLDER -type f -mtime -17 -ls
find PATH/TO/FOLDER -type f -mtime -17 -print0 | xargs -0 ls -lh
From local copy of git repo
git bundle create code_library.bundle HEAD main
This will create a file, code_library.bundle
Copy this file to target location
| # Various methods of reading SAS, Stata, and other stats file formats in R | |
| # | |
| # Package used to read SAS, Stata, and other stats file formats | |
| # library(foreign) | |
| # NOTE: personally do not use this package | |
| # | |
| # Read Stata data into R using readstata13 package |
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |