From 80fb307f24b25e8f07b36eb1d2df47a40d4a44e9 Mon Sep 17 00:00:00 2001 From: rasbt Date: Wed, 21 May 2014 17:36:24 -0400 Subject: [PATCH] fixed typo --- useful_scripts/prepend_python_shebang.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/useful_scripts/prepend_python_shebang.sh b/useful_scripts/prepend_python_shebang.sh index 74c89c3..8555f39 100644 --- a/useful_scripts/prepend_python_shebang.sh +++ b/useful_scripts/prepend_python_shebang.sh @@ -9,7 +9,7 @@ # prepends !#/usr/bin/python to all .py files find ./ -maxdepth 1 -name "*.py" -exec sed -i.bak '1i\ -!#/usr/bin/python +#!/usr/bin/env/python ' {} \; # removes temporary files