8 lines
162 B
Fish
Executable file
8 lines
162 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
# capture the input
|
|
# set -l temp (mktemp)
|
|
set -l input (cat -a)
|
|
echo $input >testoutput
|
|
# echo $input >$temp
|
|
# just --justfile $temp --dump
|