We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fef3f1d commit abee68cCopy full SHA for abee68c
manual-test-macos.sh
@@ -0,0 +1,18 @@
1
+#!/bin/bash
2
+
3
+# setup Bash environment
4
+set -eufx -o pipefail
5
6
+# the only parameter passed in should be of the form: 'disk4'
7
+DEVICE=$1
8
9
+./format-udf.sh -v
10
+./format-udf.sh -h
11
+./format-udf.sh -b 512 -f "/dev/$DEVICE" "UDF Manual Test"
12
+./format-udf.sh -b 512 -f "$DEVICE" "UDF Manual Test"
13
+./format-udf.sh -b 512 -f -p mbr "$DEVICE" "UDF Manual Test"
14
+./format-udf.sh -b 512 -f -p none "$DEVICE" "UDF Manual Test"
15
+./format-udf.sh -b 512 -f -w quick "$DEVICE" "UDF Manual Test"
16
+./format-udf.sh -b 512 -f -w zero "$DEVICE" "UDF Manual Test"
17
+./format-udf.sh -b 512 -f -w scrub "$DEVICE" "UDF Manual Test"
18
0 commit comments