changeset 4555:ab96ba09ae17

<oerjan> sed -i \'1i#!/bin/bash\' bin/print_args_or_input
author HackBot
date Sun, 13 Apr 2014 12:55:54 +0000
parents a84870c7953c
children 4fc4e0545d1c
files bin/print_args_or_input
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/bin/print_args_or_input	Sun Apr 13 12:50:38 2014 +0000
+++ b/bin/print_args_or_input	Sun Apr 13 12:55:54 2014 +0000
@@ -1,1 +1,2 @@
+#!/bin/bash
 if [ "$#" -gt 0 ]; then printf '%s\n' "$*"; else cat; fi