dotfiles/.local/bin/scripts/part

10 lines
132 B
Bash
Executable File

#!/bin/sh
# Run parted with rlwrap
case "$1" in
([a-z]) part=/dev/sd$1;;
("") part= ;;
(*) part=$1;;
esac
shift
fdisk $part "$@"