]> git.rmz.io Git - dotfiles.git/blobdiff - bin/fix_mythtv_perm
cleaning up bin
[dotfiles.git] / bin / fix_mythtv_perm
diff --git a/bin/fix_mythtv_perm b/bin/fix_mythtv_perm
deleted file mode 100755 (executable)
index a60c02a..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/bash
-DIR=/mnt/Skaro
-DIRS="Movies Music roms Documentaries Series Standup"
-
-for D in $DIRS; do
-    sudo chown -R ramsi:mythtv "$DIR/$D"
-    find "$DIR/$D" -type d -exec chmod 2755 {} +
-    find "$DIR/$D" -type f -exec chmod 0644 {} +
-done