aboutsummaryrefslogtreecommitdiff
path: root/scripts/commands/:codi
blob: cb4ec8dde3efb26ebf3a78dae3c5e41c0d537245 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

filetype=${1:-javascript}
tmpfile=$(mktemp /tmp/interpreter.XXXXXXX)

sensible-terminal -e sh -c "~/scripts/bin/with_zsh 'codi $filetype $tmpfile'";

rm $tmpfile;