edit SideBar
#!/bin/sh ROOT="/path/to/snapshots" # root of snapshot dir cat labels | while read LABEL do echo "$LABEL start" cd "$LABEL" && vss-get.sh "$VSS_PROJ" "$LABEL" > /dev/null cd "$ROOT" || break echo "$LABEL end" done