Server IP : 51.89.169.208 / Your IP : 216.73.216.94 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/proc/thread-self/root/usr/share/zsh/5.5.1/functions/ |
Upload File : |
# function zftp_progress { # Basic progress metre, showing the percent of the file transferred. # You want growing bars? You gottem. # styles used (context :zftp:zfparent_function:): # progress # empty or `none' no progress meter # `bar' use a growing bar of inverse video # `percent' or other non-blank show the percentage transferred # If size of remote file is not available, `bar' or `percent' just show # bytes. # update # Minimum time in seconds between updates of the progress display. local style update=1 # What style: either bar for growing bars, or anything else for simple # percentage. For bar we need to have the terminal width in COLUMNS, # which is often set automatically, but you never know. zstyle -s ":zftp$curcontext" progress style # How many seconds to wait before printing an updated progress report. zstyle -s ":zftp$curcontext" update update # Don't show progress unless stderr is a terminal [[ ! -t 2 || $style = (|none) ]] && return 0 if [[ -n $ZFTP_TRANSFER ]]; then # avoid a `parameter unset' message [[ $ZFTP_TRANSFER != *F ]] && (( ${+zftpseconds} )) && (( SECONDS - zftpseconds < update )) && return # size is usually ZFTP_SIZE, but zftransfer may set ZFTP_TSIZE local size=${ZFTP_TSIZE:-$ZFTP_SIZE} if [[ ${size:-0} -ne 0 ]]; then local frac="$(( ZFTP_COUNT * 100 / size ))%" if [[ $style = bar && ${+COLUMNS} = 1 && $COLUMNS -gt 0 ]]; then if (( ! ${+zftpseconds} )); then print "$ZFTP_FILE ($size bytes): $ZFTP_TRANSFER" 1>&2 fi integer maxwidth=$(( COLUMNS - 7 )) local width="$(( ZFTP_COUNT * maxwidth / size ))" print -nP "\r%S${(l:width:):-}%s${(l:maxwidth-width:):-}: ${frac}%%" 1>&2 else print -n "\r$ZFTP_FILE ($size bytes): $ZFTP_TRANSFER $frac" 1>&2 fi else print -n "\r$ZFTP_FILE: $ZFTP_TRANSFER $ZFTP_COUNT" 1>&2 fi if [[ $ZFTP_TRANSFER = *F && ${+zftpseconds} = 1 ]]; then unset zftpseconds print 1>&2 else typeset -g zftpseconds=$SECONDS fi fi # }