Home Files
Adminer
Execute Command
PHP Eval
Symlink
File Upload
Owner :
www-data
PHP Version
5.6.40-0+deb8u12
Disk Space
41.03 GB
Server Addr
19-www4
Your IP
10.10.10.40
Edit File
File:
#!/bin/sh set -e # Automatically added by installdeb-aspell SCRIPT="update-dictcommon-aspell" if [ "$1" = "configure" ] ; then if which $SCRIPT > /dev/null 2>&1; then $SCRIPT else echo "Error: $SCRIPT not present or executable. Missing dependency on dictionaries-common?" >&2 exit 1 fi fi # End automatically added section # Automatically added by installdeb-aspell dico_class="aspell" dico_vardir="/var/lib/$dico_class" dico_compat="pt_BR.compat" mkdir -p "$dico_vardir" for i in $dico_compat; do >"/var/lib/$dico_class/$i" done # End automatically added section