#!/bin/bash
# Copyright (C) 2004 Networks Associates Technology Inc. All rights reserved.

mkdir segv_content

for f in /scandir/*/segv/*
do
      mv ${f} segv_content
done

exit 0
