#!/bin/bash
for i in $* ; do
  chown -R 0:0 $i
  chmod -R -s $i
  chmod -R og-w $i
done
