Hacker News new | ask | show | jobs
by rwha 1520 days ago
From this: https://git.ameliorated.info/lucid/scripts/src/branch/master...

    echo '#!/bin/bash' | cat - script.sh > temp && mv temp script.sh
Is there a benefit to doing this instead of just appending to script.sh? I see the last "echo '#!/bin/bash' ..." line, but why not do that first?
1 comments

They’re not appending they’re prepending.