equal
deleted
inserted
replaced
|
1 # localdrive.cif |
|
2 # |
|
3 # Copyright (c) 2010 Accenture. All rights reserved. |
|
4 # This component and the accompanying materials are made available |
|
5 # under the terms of the "Eclipse Public License v1.0" |
|
6 # which accompanies this distribution, and is available |
|
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 # |
|
9 # Initial Contributors: |
|
10 # Accenture - Initial contribution |
|
11 # |
|
12 |
|
13 ==name localdrive |
|
14 |
|
15 ==short-description |
|
16 |
|
17 Manipulate local drives using RLocalDrive. |
|
18 |
|
19 ==long-description |
|
20 |
|
21 ==argument enum operation optional |
|
22 |
|
23 Operation to perform. |
|
24 |
|
25 ==enum-value list |
|
26 |
|
27 List info about the given drive, or if not specified list all available local drives. |
|
28 |
|
29 ==enum-value read |
|
30 |
|
31 Dumps the raw contents of the specified drive to the file given by --file, or stdout if not specified. |
|
32 |
|
33 ==enum-value write |
|
34 |
|
35 Write the file specified by --file back into the partition given by <drive>. The file size must match the partition size exactly. |
|
36 |
|
37 ==argument int drive optional |
|
38 |
|
39 The drive to operate on. Must be specified for read and write commands. |
|
40 |
|
41 ==option bool b bytes |
|
42 |
|
43 Display sizes in bytes rather than as human-readable strings - ie "1048576" rather than "1 MB". |
|
44 |
|
45 ==option filename f file |
|
46 |
|
47 Use in conjunction with read and write to specify the file to read/write the raw partition data from/to. |
|
48 |
|
49 ==copyright |
|
50 |
|
51 Copyright (c) 2010 Accenture. All rights reserved. |
|
52 |