A Shell Scirpt to Mount ISO files
A Shell Scirpt to Mount ISO files – call it using the command moustiso.sh ImageFile.iso
. You need a folder called /mnt/Image for this to work
#!/bin/sh
sudo mount -o loop "$*" /mnt/Image/
A Shell Scirpt to Mount ISO files – call it using the command moustiso.sh ImageFile.iso
. You need a folder called /mnt/Image for this to work
#!/bin/sh
sudo mount -o loop "$*" /mnt/Image/