uawdijnntqw1x1x1
IP : 3.144.36.122
Hostname : axolotl
Kernel : Linux axolotl 4.9.0-13-amd64 #1 SMP Debian 4.9.228-1 (2020-07-05) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
lib
/
roundcube
/
program
/
..
/
plugins
/
jqueryui
/
..
/
..
/
bin
/
cssshrink.sh
/
/
#!/bin/sh PWD=`dirname "$0"` JAR_DIR='/tmp' VERSION='2.4.8' COMPILER_URL="https://github.com/yui/yuicompressor/releases/download/v${VERSION}/yuicompressor-${VERSION}.zip" do_shrink() { rm -f "$2" java -jar $JAR_DIR/yuicompressor.jar -v -o "$2" "$1" } if [ ! -w "$JAR_DIR" ]; then JAR_DIR=$PWD fi if java -version >/dev/null 2>&1; then : else echo "Java not found. Please ensure that the 'java' program is in your PATH." exit 1 fi if [ ! -r "$JAR_DIR/yuicompressor.jar" ]; then if which wget >/dev/null 2>&1 && which unzip >/dev/null 2>&1; then wget "$COMPILER_URL" -O "/tmp/$$.zip" elif which curl >/dev/null 2>&1 && which unzip >/dev/null 2>&1; then curl "$COMPILER_URL" -o "/tmp/$$.zip" else echo "Please download $COMPILER_URL and extract compiler.jar to $JAR_DIR/." exit 1 fi (cd $JAR_DIR && unzip "/tmp/$$.zip" && mv "yuicompressor-${VERSION}.jar" "yuicompressor.jar") rm -f "/tmp/$$.zip" fi # compress single file from argument if [ $# -gt 0 ]; then CSS_FILE="$1" echo "Shrinking $CSS_FILE" minfile=`echo $CSS_FILE | sed -e 's/\.css$/\.min\.css/'` do_shrink "$CSS_FILE" "$minfile" exit fi DIRS="$PWD/../skins/* $PWD/../plugins/* $PWD/../plugins/*/skins/*" # default: compress application scripts for dir in $DIRS; do for file in $dir/*.css; do echo "$file" | grep -e '.min.css$' >/dev/null if [ $? -eq 0 ]; then continue fi if [ ! -f "$file" ]; then continue fi echo "Shrinking $file" minfile=`echo $file | sed -e 's/\.css$/\.min\.css/'` do_shrink "$file" "$minfile" done done
/var/lib/roundcube/program/../plugins/jqueryui/../../bin/cssshrink.sh