summaryrefslogtreecommitdiff
path: root/Tools/schnitt/vmount
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/schnitt/vmount')
-rwxr-xr-xTools/schnitt/vmount18
1 files changed, 0 insertions, 18 deletions
diff --git a/Tools/schnitt/vmount b/Tools/schnitt/vmount
deleted file mode 100755
index ab16e45..0000000
--- a/Tools/schnitt/vmount
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-count=1
-cond=0
-
-if [ -f "$1" ]; then
- mount "$1" /mnt/1 -o loop
- cond=1
-else
- while [ "$cond" != "1" ]
- do
- if [ -f "$1$count" ]; then
- mount "$1$count" /mnt/$count -o loop
- else
- cond=1
- fi
- let count=count+1
- done
-fi