Add unmount aliases
This commit is contained in:
parent
068f1773aa
commit
0370ba213b
2 changed files with 3 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ def main():
|
|||
|
||||
# Show results
|
||||
wk.std.print_info('Results')
|
||||
wk.std.print_report(report, indent=2)
|
||||
wk.std.print_report(report)
|
||||
|
||||
# GUI mode
|
||||
if 'gui' in sys.argv:
|
||||
|
|
|
|||
|
|
@ -34,7 +34,9 @@ alias srmdirs='sudo find -depth -mindepth 1 -type d -exec rmdir "{}" --ignore-fa
|
|||
alias srs='sudo rsync -avhPS --stats --exclude-from="$HOME/.rsync_exclusions"'
|
||||
alias srsz='sudo rsync -avhzPS --stats --exclude-from="$HOME/.rsync_exclusions"'
|
||||
alias testdisk='sudo testdisk'
|
||||
alias umount-all-volumes='for mountpoint in /media/*; do udevil umount "$mountpoint"; done'
|
||||
alias umount='sudo umount'
|
||||
alias unmount-all-volumes='for mountpoint in /media/*; do udevil umount "$mountpoint"; done'
|
||||
alias unmount='sudo umount'
|
||||
alias wkclone='ddrescue-tui clone'
|
||||
alias wkimage='ddrescue-tui image'
|
||||
|
|
|
|||
Loading…
Reference in a new issue