Useful Commands

From bibbleWiki
Revision as of 02:44, 5 January 2021 by Iwiseman (talk | contribs)
Jump to navigation Jump to search

View Certificate Details

curl --insecure -vvI https://www.google.com 2>&1 | awk 'BEGIN { cert=0 } /^\* SSL connection/ { cert=1 } /^\*/ { if (cert) print }'

List or Delete Files With Spaces

find DONTUSESLASH -type d -name '.vs' -print0 | xargs -0 ls -l
find DONTUSESLASH -type d -name '.vs' -print0 | xargs -0 rm -rf

Size of Directories

du -sh -- *  | sort -rh