{"id":290,"date":"2014-10-19T13:00:18","date_gmt":"2014-10-19T13:00:18","guid":{"rendered":"http:\/\/adrhc.go.ro\/wordpress\/?p=290"},"modified":"2016-02-11T00:27:03","modified_gmt":"2016-02-10T22:27:03","slug":"recursively-remove-all-empty-directories","status":"publish","type":"post","link":"https:\/\/adrhc.go.ro\/blog\/recursively-remove-all-empty-directories\/","title":{"rendered":"Recursively remove all empty or almost empty directories"},"content":{"rendered":"<pre class=\"brush:bash shell;toolbar: false;auto-links: true\">\r\nfind \/i-data\/md0\/video\/ -type d -empty -delete\r\n\r\n# print files\/directories with size less 1M:\r\ncd \/********\/Videos\/couchpotato-complete\r\ndu -sh * | grep -P \"\\d+K\" | awk '{for (i=2; i&lt;NF; i++) printf $i \" \"; print $NF}' | sort\r\ndu -sh * | grep -P \"\\d+K\" | awk '{for (i=2; i&lt;NF; i++) printf $i \" \"; print $NF}' | sort > movies_to_delete.txt\r\nwhile read -r file; do rm -rv -- \"$file\"; done &lt; movies_to_delete.txt\r\nrm -v movies_to_delete.txt\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>find \/i-data\/md0\/video\/ -type d -empty -delete # print files\/directories with size less 1M: cd \/********\/Videos\/couchpotato-complete du -sh * | grep -P &#8220;\\d+K&#8221; | awk &#8216;{for (i=2; i&lt;NF; i++) printf $i &#8221; &#8220;; print $NF}&#8217; | sort du -sh * | [&hellip;]<\/p>\n<div class=\"link-more\"><a href=\"https:\/\/adrhc.go.ro\/blog\/recursively-remove-all-empty-directories\/#more-290\" class=\"more-link\">Continue reading &#10142; <span class=\"screen-reader-text\">Recursively remove all empty or almost empty directories<\/span><\/a><\/div>","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9,11],"tags":[],"class_list":["post-290","post","type-post","status-publish","format-standard","hentry","category-commands","category-linux"],"_links":{"self":[{"href":"https:\/\/adrhc.go.ro\/blog\/wp-json\/wp\/v2\/posts\/290","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/adrhc.go.ro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/adrhc.go.ro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/adrhc.go.ro\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/adrhc.go.ro\/blog\/wp-json\/wp\/v2\/comments?post=290"}],"version-history":[{"count":0,"href":"https:\/\/adrhc.go.ro\/blog\/wp-json\/wp\/v2\/posts\/290\/revisions"}],"wp:attachment":[{"href":"https:\/\/adrhc.go.ro\/blog\/wp-json\/wp\/v2\/media?parent=290"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/adrhc.go.ro\/blog\/wp-json\/wp\/v2\/categories?post=290"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/adrhc.go.ro\/blog\/wp-json\/wp\/v2\/tags?post=290"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}