44

I don't know bash scripting

if [ -d ~/.bashrc.d ]; then
	for rc in ~/.bashrc.d/*; do
		if [ -f "$rc" ]; then
			. "$rc"
		fi
	done

I asked chatgpt and it said this is non standard? There is no bashrc.d directory on my home folder, I have uncommented the lines for now but dont know if this is benign or malignant

you are viewing a single comment's thread
view the rest of the comments
[-] Badabinski@kbin.earth 11 points 21 hours ago

Ugh, I hate ChatGPT. If this is Bash (which it is, because it's literally looking for files in a directory called ~/.bashrc.d), then it should god damned well be using syntax and language features that we've had for at least twenty fucking years. Specifically, if you're writing for Bash (and not POSIX shell), you better be using [[ ]] rather than [ ]. This wiki is my holy book I use to keep the demons away when writing Bash, and it does a simply fantastic job of explaining why you should use God damned double square brackets.

ChatGPT writes shitty, horrible, buggy ass Bash. This is relatively decent for ChatGPT (it even makes sure the files are real files and not symlinks), but I've had to fix enough terrible fucking shitty AI Bash to have no tolerance for even the smallest misstep from it.

Sincerely, A senior developer who is known as the Bash wizard at work.

EDIT: Sorry, OP. ChatGPT did not, in fact, write this code, and I am going to leave my comment here as a testament to what a big smelly dick I was here.

[-] JustAnotherKay@lemmy.world 14 points 19 hours ago

I think you misread both the question and how they used ChatGPT Mr Bash Wizard

[-] Badabinski@kbin.earth 15 points 19 hours ago

oh fuck I did misread it. Man, now I sound like a big ol' asshole. Sorry, OP :/ I had a bad week thanks to some ChatGPT code and just kinda jumped out when I saw the word "ChatGPT" next to Bash.

[-] Azzk1kr@feddit.nl 3 points 13 hours ago

Hey man you're human! Mistakes! Everyone makes them! At least you admit it, right :D

this post was submitted on 20 Sep 2024
44 points (95.8% liked)

Linux

47372 readers
851 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS