#!/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