fatresize is a small tool using libparted to resize FAT type partitions. Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
7 lines
135 B
Bash
7 lines
135 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"fatresize")
|
|
test $(/sbin/fatresize -h | grep '^Please report bugs to mouse@ya.ru' | wc -l) -gt 0
|
|
;;
|
|
esac
|