8 lines
179 B
Fish
8 lines
179 B
Fish
|
#!/usr/bin/env fish
|
||
|
|
||
|
# Helper script to initialize fish scripts
|
||
|
function initscript
|
||
|
set -f file "$argv.fish"
|
||
|
echo "#!/usr/bin/env fish" >> "$file"
|
||
|
chmod +x "$file"
|
||
|
end
|