summarylogtreecommitdiffstats
path: root/wd
blob: 19e3de55ffae242bdd5bc5463f654272cece430a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

WDDIR="$HOME/.local/share/wudao-dict"
if [ ! -d "$WDDIR" ]
then
	cp -r /opt/wudao-dict "$WDDIR"
	mkdir "$WDDIR/usr"
fi

save_path=$PWD
cd $WDDIR
./wdd $*
cd $save_path