about summary refs log tree commit diff stats
path: root/trainfuck
blob: 22d100993e7636c9ff0019298fc00d63fa36e39b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# TRAINFUCK: CHOO CHOO MUTHAFUCKA -*- sh -*-
# Author: Case Duckworth <acdw@acdw.net>
# License: WTFPL
# Version: #9

### Commentary:

# shell wrapper around trainfuck.awk, which see.

### Code:

TRAINFUCK=trainfuck.awk

gawk -v EXE_NAME="$(basename $0)" -f "$TRAINFUCK" -- "$@"