0
votes
Delete all but the 4 newest directories
Another, BSD-safe, way to do it, with arrays (why not?)
#!/bin/bash
ARRAY=( `ls -td */` )
ELEMENTS=${#ARRAY[@]}
COUNTER=4
while [ $COUNTER -lt $ELEMENTS ]; do
echo ${ARRAY[${COUNT …
