##File size
Display the biggest top-20 directories
du -ah . | sort -rh | head -20
Display largest files
find [directory i.e. ~/] -type f -printf "%s - %p\n" | sort -n | tail -n 100
/** | |
* Amazon Web Services Signature 4 Utility for ColdFusion | |
* Version Date: 2016-04-12 (Alpha) | |
* | |
* Copyright 2016 Leigh (cfsearching) | |
* | |
* Requirements: Adobe ColdFusion 10+ | |
* AWS Signature 4 specifications: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); |
http { | |
... | |
server { | |
listen 80; | |
server_name example.com; | |
root /var/www/exmaple.com/www/; | |
index index.cfm; | |
set $lucee_context "example.com"; | |
##File size
Display the biggest top-20 directories
du -ah . | sort -rh | head -20
Display largest files
find [directory i.e. ~/] -type f -printf "%s - %p\n" | sort -n | tail -n 100