Advertisement
diegopetrucci

Untitled

Jun 30th, 2011
496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. for filename in /Volumes/*
  4. do
  5. if [[ $filename != "/Volumes/Macintosh HD" && $filename != "/Volumes/BOOTCAMP" ]]
  6. then
  7. file=$filename"/.metadata_never_index"
  8. touch "$file"
  9. fi
  10. done;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement