Server IP : 103.119.228.120 / Your IP : 3.22.42.189 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/zsh/5.0.2/functions/ |
Upload File : |
# Put standard ANSI color codes in shell parameters for easy use. # Note that some terminals do not support all combinations. emulate -L zsh typeset -Ag color colour color=( # Codes listed in this array are from ECMA-48, Section 8.3.117, p. 61. # Those that are commented out are not widely supported or aren't closely # enough related to color manipulation, but are included for completeness. # Attribute codes: 00 none # 20 gothic 01 bold # 21 double-underline 02 faint 22 normal 03 standout 23 no-standout 04 underline 24 no-underline 05 blink 25 no-blink # 06 fast-blink # 26 proportional 07 reverse 27 no-reverse 08 conceal 28 no-conceal # 09 strikethrough # 29 no-strikethrough # Font selection: # 10 font-default # 11 font-first # 12 font-second # 13 font-third # 14 font-fourth # 15 font-fifth # 16 font-sixth # 17 font-seventh # 18 font-eighth # 19 font-ninth # Text color codes: 30 black 40 bg-black 31 red 41 bg-red 32 green 42 bg-green 33 yellow 43 bg-yellow 34 blue 44 bg-blue 35 magenta 45 bg-magenta 36 cyan 46 bg-cyan 37 white 47 bg-white # 38 iso-8316-6 # 48 bg-iso-8316-6 39 default 49 bg-default # Other codes: # 50 no-proportional # 51 border-rectangle # 52 border-circle # 53 overline # 54 no-border # 55 no-overline # 56 through 59 reserved # Ideogram markings: # 60 underline-or-right # 61 double-underline-or-right # 62 overline-or-left # 63 double-overline-or-left # 64 stress # 65 no-ideogram-marking ) # A word about black and white: The "normal" shade of white is really a # very pale grey on many terminals; to get truly white text, you have to # use bold white, and to get a truly white background you have to use # bold reverse white bg-xxx where xxx is your desired foreground color # (and which means the foreground is also bold). # Map in both directions; could do this with e.g. ${(k)colors[(i)normal]}, # but it's clearer to include them all both ways. local k for k in ${(k)color}; do color[${color[$k]}]=$k; done # Add "fg-" keys for all the text colors, for clarity. for k in ${color[(I)3?]}; do color[fg-${color[$k]}]=$k; done # This is inaccurate, but the prompt theme system needs it. color[grey]=${color[black]} color[fg-grey]=${color[grey]} color[bg-grey]=${color[bg-black]} # Assistance for the color-blind. colour=(${(kv)color}) # A case where ksh namerefs would be useful ... # The following are terminal escape sequences used by colored prompt themes. local lc=$'\e[' rc=m # Standard ANSI terminal escape values typeset -Hg reset_color bold_color reset_color="$lc${color[none]}$rc" bold_color="$lc${color[bold]}$rc" # Foreground typeset -AHg fg fg_bold fg_no_bold for k in ${(k)color[(I)fg-*]}; do fg[${k#fg-}]="$lc${color[$k]}$rc" fg_bold[${k#fg-}]="$lc${color[bold]};${color[$k]}$rc" fg_no_bold[${k#fg-}]="$lc${color[normal]};${color[$k]}$rc" done # Background typeset -AHg bg bg_bold bg_no_bold for k in ${(k)color[(I)bg-*]}; do bg[${k#bg-}]="$lc${color[$k]}$rc" bg_bold[${k#bg-}]="$lc${color[bold]};${color[$k]}$rc" bg_no_bold[${k#bg-}]="$lc${color[normal]};${color[$k]}$rc" done