mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 04:40:11 +08:00
8 lines
74 B
Bash
8 lines
74 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"rclone")
|
|
rclone version | grep "$2"
|
|
;;
|
|
esac
|