[feature] script to install mongodb-cli tools

This commit is contained in:
Klesh Wong 2020-11-16 09:37:51 +08:00
parent bc20e480d4
commit 2e539b950b

15
apps/mongocli.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
DIR=$(dirname "$(readlink -f "$0")")
. "$DIR/../env.sh"
# install mongodb-cli tools only
case "$PM" in
apt)
sudo apt install mongodb-clients
;;
pacman)
# TODO
;;
esac