mirror of
https://github.com/kevinveenbirkenbach/linux-image-manager.git
synced 2024-11-10 01:51:03 +01:00
Updated backup script
This commit is contained in:
parent
916f0db76e
commit
9fa71fc5c9
@ -1,17 +1,14 @@
|
||||
#!/bin/bash
|
||||
echo "Backupscript fuer SD's"
|
||||
echo "@author KevinFrantz"
|
||||
echo "@since 2017-03-17"
|
||||
info "Backupscript for memory devices started"
|
||||
echo
|
||||
echo "Liste der aktuell gemounteten Geraete:"
|
||||
info "Actual mounted devices:"
|
||||
echo
|
||||
ls -lasi /dev/ | grep "sd"
|
||||
echo "(Die Liste zeigt nur Geraete an welche auf den Filter /dev/sd* passen)"
|
||||
ls -lasi /dev/ | grep -E "sd|mm"
|
||||
echo
|
||||
while [ \! -b "$ifi" ]
|
||||
do
|
||||
echo "Bitte waehlen Sie die korrekte SD-Karte aus:"
|
||||
echo "/dev/:"
|
||||
info "Please select the correct device."
|
||||
question "/dev/:"
|
||||
read device
|
||||
ifi="/dev/$device"
|
||||
done
|
||||
@ -26,8 +23,8 @@ while [ "$path" == "" ]
|
||||
ofi=$(pwd)"/"$path.img
|
||||
fi
|
||||
done
|
||||
echo "Inputfile: $ifi"
|
||||
echo "Outputfile: $ofi"
|
||||
echo "Bestaetigen Sie mit der Enter-Taste. Zum Abbruch Ctrl + Alt + C druecken"
|
||||
info "Input file: $ifi"
|
||||
info "Output file: $ofi"
|
||||
question "Please confirm by pushing \"Enter\". To cancel use \"Ctrl + Alt + C\""
|
||||
read bestaetigung
|
||||
dd if=$ifi of=$ofi bs=1M status=progress
|
||||
|
Loading…
Reference in New Issue
Block a user