You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
272 B
15 lines
272 B
function revert-image
|
|
set img_file 'emptydisk.img'
|
|
switch $argv[1]
|
|
case 1
|
|
set img_file 'onefile.img'
|
|
case m
|
|
set img_file 'multilevel.img'
|
|
case l
|
|
set img_file 'largefile.img'
|
|
case s
|
|
set img_file 'symlink.img'
|
|
end
|
|
|
|
cp imgs{-cp,}/$img_file
|
|
end
|