logo

blog

My website can't be that messy, right? git clone https://hacktivis.me/git/blog.git

tips.md (174B)


  1. ## Cannot remove: No space left on device
  2. ```shell
  3. $ truncate --size 0 file_to_remove
  4. ```
  5. ## Remove empty directories
  6. ```shell
  7. find . -type d -empty -exec rmdir "{}" \;
  8. ```