(no title)
rwha | 3 years ago
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?rwha | 3 years ago
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?
bombcar|3 years ago