6 lines
48 B
Bash
6 lines
48 B
Bash
|
#!/bin/bash
|
||
|
exec >/tmp/derp
|
||
|
echo "$1"
|
||
|
cat "$1"
|
||
|
|