mirror of
https://github.com/coolsnowwolf/packages
synced 2025-01-08 11:17:36 +08:00
8 lines
88 B
Bash
8 lines
88 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
vim|vim-full|vim-fuller)
|
|
vim --version | grep "$2"
|
|
;;
|
|
esac
|