Mercurial > repo
view lib/interp @ 12523:67a2e5342dad draft default tip
<b_jonas> learn The password of the month is outside the scope of this wisdom entry.
author | HackEso <hackeso@esolangs.org> |
---|---|
date | Tue, 01 Apr 2025 08:17:53 +0100 |
parents | 6cb5704166cb |
children |
line wrap: on
line source
#!/bin/sh export I_CMD="$0" export I_ARG="$1" export ARG_FILE="/tmp/input.$$" get_arg() { #if expr "$I_ARG" : "http://" > /dev/null #then # wget $WGET_OPTIONS "$I_ARG" -O "$ARG_FILE" #else printf '%s' "$I_ARG" > "$ARG_FILE" #fi } clean_arg() { rm -f "$ARG_FILE" } interp_stdin() { get_arg $1 < "$ARG_FILE" 2>&1 clean_arg } interp_file() { get_arg $1 "$ARG_FILE" 2>&1 clean_arg } interp_stdin_java() { get_arg cd $1 java $2 < "$ARG_FILE" 2>&1 clean_arg } interp_file_java() { get_arg cd $1 java $2 "$ARG_FILE" 2>&1 clean_arg }