mirror of
https://github.com/bennofs/nix-script
synced 2025-01-10 12:54:20 +01:00
7 lines
104 B
Bash
7 lines
104 B
Bash
|
#!/usr/bin/env nix-script
|
||
|
#!>zsh
|
||
|
#! nix | zsh
|
||
|
|
||
|
function a { echo "this is zsh!" }
|
||
|
a
|
||
|
echo "your args: $@"
|