Server IP : 85.214.239.14 / Your IP : 18.216.3.63 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/task/2/root/usr/bin/ |
Upload File : |
#! /bin/sh # This is just for backward compatibility. New applications should use # 'pambrighten'. # We don't try very hard to respond well to invalid syntax, because backward # compatibility is mostly like existing, working applications. pambrightenOpts='' normalize='no' expectValue='no' for word in "$@"; do if test "$expectValue" = 'yes'; then # This is the value of an option, like "40" in "-saturation 40" pambrightenOpts="$pambrightenOpts $word" expectValue='no' else # 'word_one_hyphen' is 'word' except if 'word' is a double-hyphen # option, 'word_one_hyphen' is the single-hyphen version of it. # E.g. word=--saturation word_one_hyphen=-saturation . word_one_hyphen=$(echo "$word" | sed s/^--/-/ ) case $word_one_hyphen in -version ) pambrighten -version; exit $? ;; -normalize|-normaliz|-normali|-normal|-norma|-norm|-nor|-no|-n) normalize='yes' ;; -*=*) pambrightenOpts="$pambrightenOpts $word" # This is an option with value such as "-saturation=40" ;; -*) pambrightenOpts="$pambrightenOpts $word" # Starts with hyphen, no equals sign, so the next word is the # option's value (note that the only valid ppmbrighten flag # option is -normalized, handled above). # # E.g. "-saturation 40" expectValue='yes' ;; *) # Not an option or option value - only non-option argument # ppmbrighten has is optional input file name infile="$word" ;; esac fi done if test "$normalize" = 'yes'; then pnmnorm -bsingle -wsingle -colorvalue -keephues $infile | \ pambrighten $pambrightenOpts | ppmtoppm else pambrighten $pambrightenOpts $infile | ppmtoppm fi