-
-
Save Piasy/ba8c7171b5f3a2165cf9b815d1fcf3a6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
checkExisting(){ | |
echo "Checking if already existing device on file..." | |
while read fileLine; do | |
if [ "$line" = "$fileLine" ]; then | |
echo "[WARNING] Device already initialized on this system. Nothing to do here" | |
open "$FILENAME" | |
exit 0; | |
fi | |
done < /etc/fstab | |
} | |
addLine(){ | |
uuid=$(diskutil info "$FILENAME" | grep UUID | cut -d ':' -f2 | tr -d ' ') | |
# volumeName=$(diskutil info "$FILENAME" | grep "Volume Name" | cut -d ':' -f2 | tr -d ' ') | |
volumeName=$(diskutil info "$FILENAME" | grep "Volume Name" | cut -d ':' -f2 | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//') | |
volumeNameSafe=${volumeName// /\\040} | |
if [ "$uuid" = "" ]; then | |
line="LABEL=$volumeNameSafe none ntfs rw,auto,nobrowse"; | |
else | |
line="UUID=$uuid none ntfs rw,auto,nobrowse"; | |
fi | |
checkExisting; | |
echo "# New NTFS HD: '$volumeName' on $(date) " >> /etc/fstab | |
echo $line >> /etc/fstab | |
device=$(diskutil info "$FILENAME" | grep "Device Node" | cut -d ':' -f2 | tr -d ' ') | |
diskutil unmount "$FILENAME" | |
diskutil mount "$device" | |
open "$FILENAME"; | |
exit 0; | |
} | |
checkDisk(){ | |
filetype=$(diskutil info "$FILENAME" | grep "Type (Bundle):" | cut -d ':' -f2 | tr -d ' ') | |
#echo $filetype | |
if [ "$filetype" = "ntfs" ]; then | |
addLine; | |
fi | |
if [ "$filetype" = "" ]; then | |
echo "Error. Please, select a NTFS device" | |
fi | |
} | |
#Check sudo | |
if [[ $(/usr/bin/id -u) -ne 0 ]]; then | |
echo "This script should be run as ROOT. Try sudo" | |
exit | |
fi | |
echo "___________________________________" | |
echo "RubeniumTB. 2013 --ruben80(at)gmail.com--" | |
echo "" | |
echo "Initialize a NTFS Hard Disk on this system to read and write" | |
echo "Next time you won't need to initialize it again. Just plug and open but" | |
echo "take into account that:" | |
echo "" | |
echo "* Configured disks will not be auto-opened!!" | |
echo "* You will need to open /Volumes and click on your disk!!" | |
echo "" | |
echo "* Although it should not happen anything wrong, use at your own risk" | |
echo "" | |
echo "* IMPORTANT!!. Be sure that the NTFS device has been safely removed or it won't" | |
echo "be mounted in write mode. In this case you can connect it again to any windows PC," | |
echo "remove safely, and then connect to your MAC" | |
echo "" | |
echo "* Also IMPORTANT!!. To avoid problems use SHORT names for the Volume names " | |
echo "and preferably only letters/numbers. Of course NO special characters (except spaces)" | |
echo "" | |
echo "Now you are ready...." | |
echo "SELECT a NTFS Disk to initialize on this system" | |
echo "Write quit to exit" | |
echo "" | |
select FILENAME in "/Volumes"/* | |
do | |
case "$FILENAME" in | |
"$QUIT") | |
echo "Exiting." | |
break | |
;; | |
*) | |
echo "You picked "$FILENAME" " | |
checkDisk; | |
;; | |
esac | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment