スクリプトを作成しました。
#!/bin/bash
dir=/opt/bla/myfiles
# Check disk usage usep=$(df -H | grep /dev/sda3 | awk '{print $5}' | cut -d '%' -f1) if [ $usep -ge 90 ]; then
echo "$(date) Running out of space in /dev/sda3 with $usep percent - so deleting action is taking!" >> /var/log/messages &&
find $dir/releases/* -mtime +3 -exec rm {} \; else
echo "$(date) Disk space is $usep percent - no action required!" /var/log/messages fi
うまくいきます。しかし、今より高度な方法が必要です。ご覧のとおり、dir内の3日以上前のすべてのファイルが削除されます。たとえば、1.31.1 1.31.2 1.31.3 ...... 1.31.150 1.32.1 1.32.2など、多数のリリースがあります。
そしてそう。メジャービルド1.31/1.32の最後のリリースを除くすべてのリリースを削除したい。方法?いつかは2.32.150になるため、静的な名前にすることはできません。
ls -l
total 520
drwxr-xr-x 2 jenkins jenkins 4096 Jun 23 15:45 0.0.31-SNAPSHOT
drwxr-xr-x 2 jenkins jenkins 4096 Jun 23 15:45 1.33.0.100-RELEASE
drwxr-xr-x 2 jenkins jenkins 4096 Jun 23 15:45 1.33.0.101-RELEASE
drwxr-xr-x 2 jenkins jenkins 4096 Jun 8 11:00 1.33.0.58-RELEASE
drwxr-xr-x 2 jenkins jenkins 4096 Jun 8 11:00 1.33.0.59-RELEASE
drwxr-xr-x 2 jenkins jenkins 4096 Jun 8 11:00 1.33.0.64-RELEASE
drwxr-xr-x 2 jenkins jenkins 4096 Jun 8 11:00 1.33.0.66-RELEASE
アイデア、ありがとう!
1つの方法を次に示します。
#!/bin/bash
targetDir=/opt/bla/myfiles;
## declare 'releases' as an associative array
declare -A releases
cd "$targetDir"
## Iterate over all directories in $targetDir.
for dir in */; do
## remove the trailing slash
dir="${dir%/}"
## Extract the version string
ver="${dir%%-*}"
## Use the version as the key for the associative array
releases["$ver"]="$dir";
done
## Get the newest version; sort -h understands version numbers
newestVersion=$( printf '%s\n' "${!releases[@]}" | sort -h | tail -n1)
## This is probably not needed as extended globbing should be on by default
shopt -s extglob
## Delete the rest. The '$targetDir/' isn't necessary but it's safer
## just in case we're not actually where we think we are.
rm -rf $targetDir/!("${releases[$newestVersion]}")
警告:
/opt/bla/myfiles
にのみディレクトリがあることを前提としています。