mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-01 03:12:38 +08:00
8 lines
112 B
Bash
8 lines
112 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"parted")
|
|
test $(/sbin/parted --version | grep '^Copyright' | wc -l) -gt 0
|
|
;;
|
|
esac
|