muhyb@programming.dev to linuxmasterrace@feddit.deEnglish · 1 year agoFirst time installing a distro that came with zsh instead of bashi.imgur.comimagemessage-square66fedilinkarrow-up1181arrow-down15file-text
arrow-up1176arrow-down1imageFirst time installing a distro that came with zsh instead of bashi.imgur.commuhyb@programming.dev to linuxmasterrace@feddit.deEnglish · 1 year agomessage-square66fedilinkfile-text
minus-squareThaurin@lemmy.worldlinkfedilinkEnglisharrow-up6·edit-21 year agoI mean, doesn’t the script have a hash bang pointing to the bash interpreter? #!/usr/bin/bash Or you can just run it like: bash script.sh
minus-squareZucca@sopuli.xyzlinkfedilinkEnglisharrow-up5·1 year ago#!/usr/bin/env bash for compability. 😉 For example on my system bash is in /bin.
minus-squareThaurin@lemmy.worldlinkfedilinkEnglisharrow-up5·1 year agoRight, of course. I already do that with Python scripts, but with bash old habits die hard, I guess. :)
minus-squaresamsy@feddit.delinkfedilinkEnglisharrow-up2·1 year agoI know, well the lazyness is strong in me. Copy and paste.
minus-squareThaurin@lemmy.worldlinkfedilinkEnglisharrow-up5·edit-21 year agoHuh. It’s the first thing I write in any script. :) It actually saves me time.
I mean, doesn’t the script have a hash bang pointing to the bash interpreter?
Or you can just run it like:
#!/usr/bin/env bash
for compability. 😉For example on my system bash is in /bin.
Right, of course. I already do that with Python scripts, but with bash old habits die hard, I guess. :)
I know, well the lazyness is strong in me. Copy and paste.
Huh. It’s the first thing I write in any script. :) It actually saves me time.