15 lines
212 B
Bash
15 lines
212 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
#
|
||
|
case $LANG in
|
||
|
pl*)
|
||
|
rsync -a /usr/share/mabox/lang/pl/ /home/mabox/
|
||
|
;;
|
||
|
es*)
|
||
|
rsync -a /usr/share/mabox/lang/es/ /home/mabox/
|
||
|
;;
|
||
|
*)
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|