A tiny list of Plesk tips that we find useful. Most part of the shell commands muste be entered as root.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
######################################################################## | |
# | |
# Creates square thumbnails (100x100) from a folder of jpg images | |
# | |
######################################################################## | |
for i in *.jpg; do | |
if [ "$i" -nt "../thumbs/$i" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
################################################## | |
# | |
# DOWNLOAD WEBSITE LOCALLY USING WGET | |
# | |
# Usage: ./site-archiver.sh https://web6.fr/ | |
# | |
################################################## |
NewerOlder