?¡ëPNG
IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À?¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/user1137782/www/china1.by/classwithtostring.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
#!/bin/bash
# perl vars
optvendorarch="/opt/libs/perl"
eval "`perl -V:installvendorarch`"
if test -z "$installvendorarch"; then
echo "Can't find perl's installvendorarch path" 1>&2
exit 1
fi
# help
test -z "$1" && echo "Usage: $0 [install|uninstall]" && exit
# run
case "$1" in
install)
# create auto dir
mkdir -p "$installvendorarch/auto"
# test already installed modules
for x in `find /opt/libs/perl -mindepth 1 -maxdepth 1 ! -name auto -printf '%f\n'` \
`find /opt/libs/perl/auto -mindepth 1 -maxdepth 1 -printf 'auto/%f\n'`; do
test -e "$installvendorarch/$x" -a ! -h "$installvendorarch/$x" && \
echo "Found $installvendorarch/$x from another package" 1>&2 && \
echo "Please try to remove corresponding package and restart this script:" 1>&2 && \
echo "# $0 install" 1>&2 && exit 1
done
# create symlinks
find "$optvendorarch" -maxdepth 1 -mindepth 1 ! -name auto \
-exec ln -s -f {} "$installvendorarch" \;
find "$optvendorarch/auto" -maxdepth 1 -mindepth 1 \
-exec ln -s -f {} "$installvendorarch/auto" \;
# done
exit 0
;;
uninstall)
# remove existing symlinks
find "$installvendorarch" -maxdepth 1 -mindepth 1 \
-type l -lname "$optvendorarch/*" -exec rm -f {} \;
find "$installvendorarch/auto" -maxdepth 1 -mindepth 1 \
-type l -lname "$optvendorarch/auto/*" -exec rm -f {} \;
# done
exit 0
;;
*)
echo "Usage: $0 [install|uninstall]" 1>&2
exit 1
;;
esac