wordpress – download latest version without wp-content folder
# current dir should be the public folder
wget https://wordpress.org/latest.zip && \
unzip -qq latest.zip -x "wordpress/wp-content/*" && \
mv wordpress/* ./ && \
rmdir ./wordpress/ && \
rm -f latest.zip