?¡ë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
#compdef brctl local curcontext="$curcontext" expl ret=1 local subcmd if (( CURRENT == 2 )); then _describe 'brctl command' '( addbr:create\ instance\ of\ ethernet\ bridge delbr:deletes\ specified\ bridge\ instance show:show\ all\ current\ bridge\ instances addif:add\ interface\ to\ bridge delif:remove\ interface\ from\ bridge showmacs:show\ a\ list\ of\ learned\ MAC\ addresses setageing:set\ MAC\ address\ ageing\ time setgcint:set\ grabage\ collection\ interval stp:control\ use\ of\ spanning\ tree\ protocol setbridgeprio:set\ bridge\ priority setfd:set\ bridge\ forward\ delay sethello:set\ bridge\ hello\ time setmaxage:set\ maximum\ message\ age setpathcost:set\ cost\ of\ port setportprio:set\ priority\ of\ port )' && ret=0 else shift words (( CURRENT-- )) subcmd="$words[1]" curcontext="${curcontext%:*}-${subcmd}:" if (( CURRENT == 2 )); then _wanted bridges expl 'bridge' compadd \ ${${(f)"$(brctl show 2>/dev/null)"}[2,-1]%% *} && ret=0 elif (( CURRENT == 3 )); then case $subcmd in addif|delif) _net_interfaces && ret=0 ;; setageing|setgcint|setfd|sethello|setmaxage) _message -e time 'time (seconds)' ;; setbridgeprio) _message -e priority 'priority' ;; setpathcost|setportprio) _message -e ports 'port' ;; stp) _wanted states expl 'state' compadd on off && ret=0 ;; *) _message 'unknown subcommand: $subcmd' ;; esac elif (( CURRENT == 4 )); then if [[ $subcmd == setpathcost ]]; then _message -e cost 'cost' elif [[ $subcmd == setportprio ]]; then _message -e priority 'priority' fi fi fi return ret