dhruv3006@lemmy.world to Ask Lemmy@lemmy.world · 1 month agoWhat are some of your favourite developer tools?message-squaremessage-square36linkfedilinkarrow-up153arrow-down10file-text
arrow-up153arrow-down1message-squareWhat are some of your favourite developer tools?dhruv3006@lemmy.world to Ask Lemmy@lemmy.world · 1 month agomessage-square36linkfedilinkfile-text
minus-squareAstroLightz@lemmy.worldlinkfedilinkarrow-up12·1 month agoShell scripts. The power of automation is amazing.
minus-squarepmk@piefed.calinkfedilinkEnglisharrow-up8·1 month agoEspecially when you keep them small, simple, and composable.
minus-squareAnarchistArtificer@slrpnk.netlinkfedilinkEnglisharrow-up1·1 month agoWhat’s a shell script that you’re particularly chuffed with in terms of how much time/effort it saved you?
minus-squareAstroLightz@lemmy.worldlinkfedilinkarrow-up1·1 month agoA shell script to create shell scripts. Basically, it takes a file name, then creates a .sh file, and puts the shebang #!/use/bin/env bash into it. Very simple, yet it saves me from having to manually do it every time.
Shell scripts. The power of automation is amazing.
Especially when you keep them small, simple, and composable.
What’s a shell script that you’re particularly chuffed with in terms of how much time/effort it saved you?
A shell script to create shell scripts.
Basically, it takes a file name, then creates a .sh file, and puts the shebang
#!/use/bin/env bashinto it.Very simple, yet it saves me from having to manually do it every time.