![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 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, Directory : /usr/bin/X11/X11/X11/ |
Upload File : |
#! /usr/bin/python ''' This is a helper tool which is designed to make it possible for other apps to read emscripten's configuration variables in a unified way. Usage: em-config VAR_NAME This tool prints the value of the variable to stdout if one is found, or exits with 1 if the variable does not exist. ''' import os, sys, re from tools import shared if len(sys.argv) != 2 or \ not re.match(r"^[\w\W_][\w\W_\d]*$", sys.argv[1]) or \ not (sys.argv[1] in dir(shared)): print 'Usage: em-config VAR_NAME' exit(1) print eval('shared.' + sys.argv[1])