Trans.nvim/install.sh
2023-01-21 21:13:51 +08:00

19 lines
452 B
Bash
Executable File

#!/usr/bin/env bash
set -e
if [[ -d "$HOME/.vim" ]]; then
if [[ -d "$HOME/.vim/dict" && -f "$HOME/.vim/dict/ultimate.db" ]]; then
echo 'db has been installed'
exit 0
fi
else
echo '$HOME/.vim not exist'
exit 1
fi
wget https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip -O /tmp/dict.zip
unzip /tmp/dict.zip -d $HOME/.vim/dict
rm -rf /tmp/dict.zip
cd ./tts/ && npm install