9 lines
217 B
Fish
9 lines
217 B
Fish
|
#!/usr/bin/env fish
|
||
|
import ../fish_functions/log
|
||
|
|
||
|
set_default spawn_log_color "0000ff"
|
||
|
log -c $spawn_log_color "trying to spawn $argv[1] with args: <$argv[2..]>"
|
||
|
|
||
|
import ../fish_functions/$argv[1]
|
||
|
|
||
|
$argv[1] $argv[2..]
|