Shebangs for all
We've all seen or used a shebang once or twice. Ditch the specific paths and leave just a dynamic Ruby and Python bath behind.
Start file
#!/usr/bin/ruby
#!/usr/bin/env ruby
#!/usr/local/bin/python
#!/usr/python
End file
#!/usr/bin/env ruby
#!/usr/bin/env python
View Diff
1,2d0
< #!/usr/bin/ruby
<
5,7c3
< #!/usr/local/bin/python
<
< #!/usr/python
---
> #!/usr/bin/env python
Solutions by @bjorn_248:
Unlock 1 remaining solutions by signing in and submitting your own entry