Checar el tamaño de carpetas:
du -h --max-depth=1
Elimina error_log:
find -name "error_log" -exec rm -f '{}' \;
Mueve archivos a otra carpeta:
| <?php | |
| // Variables used in this script: | |
| // $summary - text title of the event | |
| // $datestart - the starting date (in seconds since unix epoch) | |
| // $dateend - the ending date (in seconds since unix epoch) | |
| // $address - the event's address | |
| // $uri - the URL of the event (add http://) | |
| // $description - text description of the event | |
| // $filename - the name of this file for saving (e.g. my-event-name.ics) | |
| // |
| navigator.geolocation.getCurrentPosition(function (position) { | |
| console.log(“I am located at: “ + position.coords.latitude + “, “ + position.coords.longitude); | |
| }); | |
| navigator.geolocation.watchPosition(function (position) { | |
| console.log(“I am now located at: “ + position.coords.latitude + “, “ + position.coords.longitude); | |
| }); |
Checar el tamaño de carpetas:
du -h --max-depth=1
Elimina error_log:
find -name "error_log" -exec rm -f '{}' \;
Mueve archivos a otra carpeta: