This file contains 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 | |
# Get all detached screen sessions | |
SESSIONS=$(screen -ls | grep Detached | awk '{print $1}') | |
# Check if there are any detached sessions | |
if [ -z "$SESSIONS" ]; then | |
echo "No detached screen sessions found." | |
exit 0 | |
fi |
This file contains 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
for file in *.png; do convert $file -resize x1280 -quality 60 ${file/png/jpg}; done |