delete file or folder based on date on linux CLI
List directories before delete find . -type d -ctime +60 -ls List files before delete find . -type f -ctime +60 -ls Delete directories in current directory find . -type…
Danang Setya Pramana - Working Memory
This is my working memory when i forgot some command and some code for my work
List directories before delete find . -type d -ctime +60 -ls List files before delete find . -type f -ctime +60 -ls Delete directories in current directory find . -type…
mysql.exe -u root set global net_buffer_length=1000000; set global max_allowed_packet=1000000000; SET foreign_key_checks = 0; SET UNIQUE_CHECKS = 0; SET AUTOCOMMIT = 0; source /home/user/dbdump150113.sql after restore remember to return default setting…
### For Single File POST http://localhost:8080/upload Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW ------WebKitFormBoundary7MA4YWxkTrZu0gW Content-Disposition: form-data; name="file"; filename="file.jpeg" Content-Type: image/jpeg < C:/Users/user/Pictures/file.jpeg ------WebKitFormBoundary7MA4YWxkTrZu0gW-- ### For Multiple FIle POST http://localhost:8080/upload Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW ------WebKitFormBoundary7MA4YWxkTrZu0gW Content-Disposition:…