Jump to content

Talk:Bash (Unix shell)

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by BrownHairedGirl (talk | contribs) at 12:08, 27 March 2019 (updating project banners per WT:WikiProject Software/Free and open-source software task force#Requested_move_23_December_2018, replaced: {{WikiProject Free Software → {{WikiProject Free and open-source software). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Install instructions?

I don't think that the Bash installation instructions should be part of this article — they just duplicate the same information in the bash distribution (and probably do an inadequate job of it). Does this kind of information really belong in an encyclopedia? --Neilc 07:56, 30 Nov 2004 (UTC)

I feel the same way. --Mark Bergsma 15:13, 30 Nov 2004 (UTC)
I've commented out the "How to install Bash" section for now, but the reason I added it in the first place was because Bash is often an add-on shell (i.e., it doesn't come with every UNIX system), so people who want to start using it need to download, build, and install it themselves. This is not hard to do if you are a programmer, but non-programmers often have no idea what to do with a tarball after they download it, even if they know in some abstract way that a "build and install" must be done. Perhaps a reduced summary of this section should remain to help such a user? — franl 16:55, 30 Nov 2004 (UTC)
Very well, but that still belongs in the documentation, not in an encyclopedia. Perhaps add a convenient link to it. --Mark Bergsma 20:05, 9 Dec 2004 (UTC)
I agree. I think this encyclopedia article should link to installation instructions, rather than explain how to install Bash. I suggest moving the "How to install Bash" section to Wikibooks: Bash Shell Scripting, leaving behind a link to that Wikibook. --DavidCary (talk) 15:02, 19 December 2014 (UTC)[reply]

OSX

"Bash is the default shell on most Linux systems as well as on Mac OS X "

I thaught CSH was the OSX one? —Preceding unsigned comment added by 86.16.160.17 (talk) 19:18, 26 November 2007 (UTC)[reply]

At least on my Leopard (and previous Tiger), it is Bash. — ww —Preceding unsigned comment added by 118.26.230.12 (talk) 17:00, 15 April 2008 (UTC)[reply]

BASH is the default shell on OSX [1]. 98.149.80.248 (talk) 05:58, 28 January 2011 (UTC)Nanoatzin (talk) 06:00, 28 January 2011 (UTC)[reply]

How to test for file extensions

I suspect this is the wrong place for this (that's why I'm not putting it in the article) but this little tip needs to be better promoted, so if you know of a better place for it, please move it there. In any case...

When writing a bash script which should do different things based on the the extension of a file, the following pattern is helpful.

#filepath should be set to the name(with optional path) of the file in question
 ext=${filepath##*.}
 if [[ "$ext" == txt ]] ; then
   #do something with text files
 fi

(My source for this is the slike.com Bash FAQ. Maybe this should go in the Wikibook on this subject, or in some kind of Bash Cookbook? --JesseW 21:54, 21 July 2005 (UTC)[reply]

I'd suggesting starting a new chapter in the wikibook.... how about wikibooks:Bourne Shell Scripting/Cookbook? Lupin 23:48, 21 July 2005 (UTC)[reply]
Ok, I've moved it there. That will be my first real edit to Wikibooks... Maybe something will get started... --JesseW 01:05, 22 July 2005 (UTC)[reply]

A note on the code above: - first, it's not correct if the file doesn't contain any dot. Like a file called "txt" will be said to have a .txt extension while it doesn't - second, it's a non sh syntax for which there is a better sh equivalent (it's preferable to write a script using a standard syntax rather that the syntax of one specific version of one specific shell implementation):

 case $filepath in
   ?*.txt)
     # do something with text files
     ;;
 esac

—Preceding unsigned comment added by Stephane Chazelas (talkcontribs) 00:17, September 10, 2006

Linux vs. GNU/Linux

I can't help but feel that this change is in factual error. As Bash is a GNU product, on a presumptive non-GNU-based Linux system, it would not be the default shelll. Please don't turn this into a flamewar over the term GNU/Linux vs. the name Linux alone; this is merely an inquiry into whether a non-GNU-based Linux distribution would use Bash as its default shell. Jouster 20:45, 22 August 2005 (UTC)[reply]

I think its alright the way it is. You see, in my opinion, the word Linux here imply the kernel, not the who operating system. If it was the later, I think the edit would have been a mistake. Now, some bash tricks [1] —Preceding unsigned comment added by Wk muriithi (talkcontribs) 16:37, November 29, 2005

Bash commands

How about a list of Bash commands? --88.111.52.30 15:48, 29 December 2005 (UTC)[reply]

Probably not. Such a list is not particularly encyclopedic or interesting- Wikipedia is not a repository for manuals after all. --Maru (talk) Contribs 18:12, 30 December 2005 (UTC)[reply]
I think it'd be worth mentioning that using the help command will bring up Bash-integrated commands (which are noteworthy different than those in /bin ). Particularly, using foreground (fg) and background (bg). Likewise, how the shell interprets keybindings such as Ctrl-Z and Ctrl-C. 69.22.210.109 19:05, 25 July 2006 (UTC)[reply]

Pipes

I have to say that I'm a little disappointed by the lack of the discussion of pipes. —Preceding unsigned comment added by 69.25.215.133 (talkcontribs) 17:29, January 12, 2006

Agreed, more elaboration on pipes & filters, and their use vis-a-vis "everything is a file" and /proc would greatly improve this article. 69.22.210.109 19:07, 25 July 2006 (UTC)[reply]
Everything is a file is great, but it's an operating system feature, and bash (by design) doesn't know anything about it. Many platforms on which bash works just fine don't have /proc or /dev/tcp or anything else along those lines. --TotoBaggins 05:22, 11 March 2007 (UTC)

Something about coproc would also be acceptable. condor (talk) 13:04, 21 February 2014 (UTC)[reply]

Integer Mathematics

I don't really understand this:

"A major limitation of the Bourne shell is that it cannot perform integer calculations without spawning an external process. Bash can perform in-process integer calculations using the ((...)) command and the $[...] variable syntax, as follows:"

So it can't do calculations without spawning an external process, ok... but wait, here's how to do it 'in-process'? Confused. --Ling

Bourne can't do integer calcs in process, but Bash can. Masterdriverz 17:21, 13 May 2006 (UTC)[reply]

      • The last thesis is real wrong. to calculate in correct mathematic forms doesn't count on the interest of thirds. Jur is a medium to stop powerabuse of a programm that deals with wrong stuff and sadist interest.--Raskollnika (talk) 09:02, 6 September 2010 (UTC)[reply]

OpenBSD

Some of the bits in here don't work on OpenBSD, although they do on Linux. —Preceding unsigned comment added by 66.192.62.82 (talkcontribs) 15:39, July 26, 2006

Could you be more specific? Which bits don't work on OpenBSD? --maru (talk) contribs 00:05, 27 July 2006 (UTC)[reply]

Unsorted comments about the bash page

First, about the credit. I don't think any of the feature described in the page was of the bash authors' invention. Most if not all features are copied from other shells: ksh for the syntax, csh/tcsh for the history and user interface and one or two zsh features. Maybe those features would be better introduced in the ksh/csh/zsh pages instead.

Minor point:

it should be:

echo "$((...))" instead of echo $((...)) as bash performs word splitting upon arithmetic expansion in that case (contrary to pdksh or zsh for instance).

It may be good to say that $[...] shouldn't be used as it's not a standard sh syntax contrary to $((...)).

The exit status of ((...)) is 0 or 1 depending on whether the expression resolves to 0 or not (a non-zero expression means "true" so a 0 exit status). So ((1+1)) is true and ((1-1)) is false.

bash has several I/O redirection syntaxes that the traditional Bourne shell lacks. bash can redirect standard output and standard error at the same time using this syntax:

The Bourne shell doesn't lack that. bash is only providing with a short cut. &> foo (why didn't bash just used the same as csh or zsh: >& ?) is the same as > foo 2>&1.

<<< 'string' is inherited from ksh93 which inherited it from zsh which inherited it from rc.

The regular expression syntax is the same as that documented by the regex(7) man page.

That regex man page when it exists documents several regexp formats. bash implements the POSIX extended regexps.

About startup scripts, it should be noted that some Linux distributions for instance may interfer with that by changing some default configure values at compile time (like enabling a system-wide bashrc or disabling the sourcing of bashrc on rsh or ssh connections). —Preceding unsigned comment added by Stephane Chazelas (talkcontribs) 00:56, September 10, 2006

You seem to know a lot about the various shells, so don't be shy about improving the article itself rather than noting its problems in here. Thanks! --TotoBaggins 05:15, 11 March 2007 (UTC)

Bash special characters

For example, the character % and & does have a special meaning. So, say I dump something to stdout, I need to escape those characters. It would be nice to have a list here because printf won't work as expected. Sure, I know you can do all the aliases you want. I know it's likely to have been listed in the docs, but I'm rather sure it could be a nice addition and does not seem to require much work by people having to deal with this all days. Thanks!
83.190.231.93 21:33, 11 December 2006 (UTC)[reply]

Article Cleanup Co-Ordination Point

I'd say a lot of the examples should be removed or moved to Wikibooks if they're not there already. Concepts like I/O redirection need only be linked to the articles which describe them, and a brief introduction given here. [edit - first we need to create the I/O redirection article :-]
Some random questions it might answer:
  • Does it have a larger overhead than other shells, as it does have a lot of features?
  • Is there a port for Mac or OSX (I would assume so - also is it the default for the X terminal thing)?
  • For builtin commands like test and pwd which also have an entry in /bin, are they really builtin or does it just call the other program?
  • Bash shares a lot of features in common with perl - but perl is generally used for web applications, but why? Is it less secure, harder to write complex applications in, etc?
One final fact (from the bash docs), when bash is run through a symlink called "sh", it will mimic the historical POSIX sh functionality more closely. --h2g2bob 10:41, 20 March 2007 (UTC)[reply]

Versions

Anyone want to mention the differences between versions? I thought there was a version 1.0 and a version 2.0. Am I correct? Anyone want to mention this? --Bill.albing 19:17, 21 December 2006 (UTC) [reply]

Elements of Style

Some people write admirably well considering they're not professional writers but in general Wiki would benefit by trained proofreaders. Another recurring annoyance is how people in the US (possibly North America) insist on putting double space after a full stop when they should know by now it's not recognised by HTML. This latter fact is most likely due to TBL fortuitously not being educated in the US or NA. Also, cutting down, on the number of, commas would greatly, improve, the readability, of Wiki, articles. As reference try visiting a major UK news site and see how English is supposed to be written: it's written to be read, not to be spoken. The comma is not a grammatically correct replacement for 'uh' or 'um'. —Preceding unsigned comment added by 62.1.24.107 (talkcontribs) 12:18, February 4, 2007

So web browsers compress white space. So what? Typing classes for decades taught double-space-after-full-stop. I don't think people's habits are going to change any time soon. ⇔ ChristTrekker 16:28, 10 November 2008 (UTC)[reply]

Tutorial stuff?

I'm removing this all. It gets bigger every time I look at the article. If we need specific comparisons to other shells then exaples might be okay, but not the manual we have now (which may as well be in yiddish as far as casual users are concerned). Chris Cunningham 12:12, 10 May 2007 (UTC)[reply]

I reverted your May 10th removal of most of the content from the bash page. Wikipedia shouldn't be dumbed down for the layman in all cases -- leave that for the intro. As a quick example: [Variations to the Standard Genetic Code]. Information about how bash handles & behaves with variables, whitespace, I/O redirection, etc is valid. Jeff Carr 15:59, 10 June 2007 (UTC)[reply]
This isn't a manual. It's not a case of "dumbing it down for the layman", it's a case of making it an interesting article, and technical guides do not make for interesting articles. The whole lot belongs on Wikibooks. Chris Cunningham 09:14, 12 June 2007 (UTC)[reply]
I fully agree that the details and examples in the integer math and string comparison sections are valid to be included in the article. I have promoted them from sub-secions under start up scripts to be main sections. Chris Cunningham - rather than the quick and easy edit to remove them all, why not take the time to summarize them, and add links to the appropriate articles with details. See test (Unix). --Unixguy 17:42, 11 June 2007 (UTC)[reply]
You're pointing to a transcoded man page as an example of a good article? That's the exact opposite of what we should be aiming for. Chris Cunningham 09:14, 12 June 2007 (UTC)[reply]
...Actually, having just gone and tried to "summarise" the stuff from the deleted sections that is actually useful to the article, I find that I already did take all the relevant bits and add them to the features section. So all that was deleted was the egrecious teach-yourself-unix shell scripting guide which specifically says it isn't bash-specific, and a couple of pages of example code. Not worth keeping. Chris Cunningham 09:48, 12 June 2007 (UTC)[reply]
Ok, after looking at the examples you removed more closely, it does appear that there is more detail than is needed for this article. I went ahead and placed the removed sections here on the talk page for future reference. --Unixguy 23:08, 13 June 2007 (UTC)[reply]
disagree Here is my vote if people feel like voting to find consensus. I do think that for this subject matter, the removed sections are relevant. Jeff Carr 20:31, 25 September 2007 (UTC)[reply]

Removed sections

Following are the removed tutorial sections. --Unixguy 23:03, 13 June 2007 (UTC)[reply]

I've moved these to Bash syntax and semantics as the content was handled in a similar way for Python syntax and semantics. Jeff Carr 00:02, 24 October 2007 (UTC)[reply]

The BASH' lack of simplification

The Bourne Again Shell has, during its long lifetime, gained several improvements and thus new programs. This has had as a result that to perform a same specific task, the user is bothered with a amount of overlapping programs.

Aldough Linux' self-correcting community might have resolved this earlier, as it is no longer actively used (now graphic interfaces are used instead) no corrections have been made for these flaws. Besides a large amount of overlapping programs, the command line interface has also a number of features which can be dismissed and replaced by other existing commands, hereby making a huge simplification possible.

Examples on this are:

  • viewing of a text file: this can be done by an excessive amount of programs as vi, pico, less, more, ...
  • the unnecessairy grep-command; instead locate with a specific option (thus locate -xx) can perform this function if locate is altered so it allows this
  • The unnecessairy possibility of using relative pathnames, this can be replaced by only allowing absolute pathnames
  • The unnecessairy pwd-command; instead the current directory can just be shown in the command line itself (similar as in DOS).
  • The unnecessairy append I/O redirection and piping option; instead of using append (>>) one can simply use overwrite (>) instead
  • The write permissions included with files should no longer include type-information (only gives extremely limited information and would be better checked with the filename-extension. Also, support for a sticky bit (-t permission) should be dropped. Thus instead of presenting eg drwxrw-rw- this would become rwxrw-rw-
  • The possible use of general points in folders (not being part of the extension) should be dropped. Thus folders named foo.bar etc can no longer be created. This has caused allot of confusion in the past.
  • Finally, commands as ls for listing folders, ... are best changed to list. Changing the commands to these makes it easier to remember them.

More suggestions may be found at My Blog's Linux Improvements-doc Hoping this article-segment will qualify for wikipedia, I have already implemented it into the BASH-article.

--KVDP 14:52, 9 September 2007 (UTC)--[reply]

Elimination of relative paths? grep unnecessary, just rewrite locate? pwd unnecessary? Remove append in favor of overwrite? Is this a joke? You're teasing. 74.64.85.88 16:11, 9 September 2007 (UTC)[reply]

Silly KVDP! Choice is what makes GNU/Linux so great. Following your train of thought I would guess that you think all cars should be the same color because there is no "need" for choice. I'll just stop there because I do not want to feed the troll any more. Donkdonk (talk) 20:42, 15 April 2008 (UTC)[reply]

Citations

The following papers

Contain a number of citations that could be added to this article. --BrianFennell (talk) 22:13, 28 May 2008 (UTC)[reply]

Pronunciation

Is anyone up for a IPA-pronunciation code? There is some controversy about how the name is pronounced. An IPA clarification would be in place, and would increase the quality of the article. 89.8.51.17 (talk) 16:40, 1 October 2008 (UTC)[reply]

Where exactly is this controversy? Chris Cunningham (not at work) - talk 17:03, 1 October 2008 (UTC)[reply]

"|hello | you| |this is a good news| do not you think so|"

history of bash development

From a historical point of view, it would be interesting to note what features were new in bash 2, and what is new in bash 3. Surely there are people running with older versions (I had a box still using bash 1 until a few weeks ago, now up to 2.02), so this would be good to know. Bill.albing mentioned this almost 2 years ago, but I don't see anything yet. ⇔ ChristTrekker 16:24, 10 November 2008 (UTC)[reply]

Regarding blocked bash address

Hi,

I have recently been trying to add a website to the external links section on the 'Bash' page, but this had been deleted a number of times.

Having read the reason, I feel that it should qualify to be added to the page. The website was not added solely for adversitement purposes. The function of the website is to provide reviews of Bash learning resources, and therefore offer users a guideline to go by when attempting to learn Bash Scripting. It is part of a final year undergraduate year, however it will be maintained as the function is solely to aid the learning of others in the area of Bash Scripting.


Regards,


Mustafa —Preceding unsigned comment added by 78.105.87.154 (talk) 16:29, 5 May 2010 (UTC)[reply]

"Unix shell"

I find it mildly offending. Perhaps "Not Unix Shell" rather! 85.77.179.98 (talk) 20:17, 18 May 2010 (UTC)[reply]

  • I'm pretty sure BASh was designed for Unix not GNU. It just happens to work on GNU/Linux and other Unix based OSs. P4lm0r3 (talk) 18:12, 11 August 2010 (UTC)[reply]
  • Well, then why article starts with:"written by Brian Fox for the GNU Project"? I would also vote for the "Unix like" or "GNU Shell". Also "Unix based" is not really correct as Linux is similar to Unix, but not based on the Unix code. "Unix like" seems to be more precise and widely accepted term for those systems (Linux distros, etc..) Igor Klimeš (talk) 09:41, 2 August 2012 (UTC)[reply]
Here on Wikipedia, we have a consensus definition of a Unix shell as "a command-line interpreter or shell that provides a traditional user interface for the Unix operating system and for Unix-like systems." Msnicki (talk) 13:50, 2 August 2012 (UTC)[reply]

Grammar

  • Programming on Bash may mean mechanics, which doesn't fit to sensefull txt. ((Oxymerons)) of a unix supervsion are instable.

Doubleblind or -bind is another lack in commands of this disappearence. N _recall sense!--Raskollnika (talk) 09:13, 6 September 2010 (UTC)[reply]

What#s up?

It seems to me the list of external links is pretty indiscriminate and far too long. I don't feel that I'm enough of an expert on bash to cull through the list but I'm hoping someone who is might be able to take a cut. When even I could spot that the bash ref manual was missing from a list this long, something's not right. What can be done to improve the quality? Msnicki (talk) 16:11, 27 October 2010 (UTC)[reply]

Keyboard shortcuts

I would like to move this section to the Readline article. In the context of an article about bash, this seems like "how to" minutiae. If this material is sufficiently notable to appear anywhere, I think it makes more sense in readline, which actually implements this functionality. Comments, please? Msnicki (talk) 16:46, 17 November 2010 (UTC)[reply]

I just removed this section but Graeme Bartlett reverted for a reason that I don't understand. How is listing the commands that a user must type to move the cursor not how-to information? How does this an attempt to explain to the reader what Bash is and why it's significant, which is what an encyclopedia is supposed to do? QVVERTYVS (hm?) 23:32, 19 November 2015 (UTC)[reply]
This is what I've been trying to tell you in the Hamilton C shell discussion: You're entitled to your opinion about what constitutes too much how-to and too much detail. But I just don't think your views are as widely shared as you think they are. Msnicki (talk) 00:21, 20 November 2015 (UTC)[reply]
I think we can have plenty of detail. However the style of this section needs to be changed. It should not be addressing "you", and it should not explain how to do things. But the detail of what the buttons are is encyclopedic information. Graeme Bartlett (talk) 12:35, 20 November 2015 (UTC)[reply]
As long as other WP authors remove detailed information for other articles, I believe this section should be deleted in the bash article. Schily (talk) 14:41, 20 November 2015 (UTC)[reply]
I cross-posted this discussion to Wikipedia Talk:WikiProject Computing#Are listings of keyboard shortcuts encyclopedic information?, but I forgot to post the link here and to request discussion take place here. In any case, Codename Lisa appears to share my opinion. QVVERTYVS (hm?) 15:13, 20 November 2015 (UTC)[reply]

I've decided to WP:BEBOLD and do what I proposed 5 years and which has never received an objection. I've moved this list of key combinations from this article [2] to the Readline article [3] where I think it becomes less "how to" and more "what does it do" content. I'm hoping everyone can live with that. Msnicki (talk) 17:58, 20 November 2015 (UTC)[reply]

Hi. The move is definitely a plus. They make more sense there. But still, I understand that when there is very little to say about the subject of the article, lists like this are convenient as sheer mass instead of useful information, especially for articles that have no hopes of every becoming a Class C article, let alone GA or FA. One telltale sign is that they are sorted alphabetically, instead of classified and meaningfully presented.
Best regards,
Codename Lisa (talk) 03:25, 21 November 2015 (UTC)[reply]
Good. Glad you thought it was helpful, Codename Lisa. Now, perhaps you might take a look at what Qwertyus has been doing here [4], playing games like removing good sources (from Cygwin), leaving only the Usenet sources and then tagging what's left with a complaint that he wants better sources, and deceptively summarizing a source to make it appear it's critical of the product when in fact they describe it as "excellent". I think it's just a big "I don't like it because it's not open source" agenda and I've complained at Talk:Hamilton C shell#Discussion requested. Msnicki (talk) 08:29, 21 November 2015 (UTC)[reply]
No, no, no, no, my dear friend. Had you asked me to participate in another discussion, I might have. But what you wrote here is personal comment that sail very close to attack. It is not even related to this discussion. Come now, I've known both of you for sometimes and know that both of you mean well. Assume a little more good faith in one another.
Now, bearing in mind the we are here to build an encyclopedia, don't forget that what you did above was simply moving building material closer to the building site. If the material remain unused for a long time, they become street clutter.
Best regards,
Codename Lisa (talk) 15:00, 21 November 2015 (UTC)[reply]

Versioning

Others might have found the extensive versioning information elsewhere as I have at the official GNU Bash website and thought that perhaps a synopsis might work well in this article. Linux kernel documentation mentions having some level of a solution prepared before suggesting a fix or feature and that same canon might apply here as well to detirmine the details listed in such a synopsis and that these details should be brought together from the knowlege of multiply contributors each with some experience with the Bash version(s) being commented on.

condor (talk) 20:33, 28 December 2010 (UTC)[reply]

As a pun

The explanation citing a relgious basis for the name lacks a credible source. Rather than wait for someone to find one I've removed the sentence because allowing it to stay in the absence of a credible citation is inflammatory.

These reasons aside. I've got an opinion of my own, which is this: There is humor to it because it is a play on words, i.e. there is similarity in spelling between "Born" and "Bourne", the latter being the shell it was named after. In addition, there is no resemblance to being birthed, in any sense of the word.

Finally, humor is subjective. I'm unable to find a reason to remove the clause saying that the name is a pun because I also see humor in it. My opinion about what it is funny explains the basis for my opinion using a reference to a classical type of humor. But I'm not sure the explanation belongs in the article -- because humor is subjective. NPOV implies a lack of subjectivity.

Kernel.package (talk) 03:50, 25 February 2011 (UTC)[reply]

This should not need a citation, it's simply a statement of the obvious to English speakers who are aware of that popular Christian phrase, which predates Bash. But I concede that a better statement of that obviousness might be useful, which I've tried to supply, along with a citation for the obvious. There's no evidence that this pun was intended to be funny or humorous (not all puns are), merely clever and expressive. Msnicki (talk) 03:05, 10 March 2011 (UTC)[reply]

GNU website as a source

Wikipedia policy seems pretty clear that we should exercise care in the use of information taken directly from any organization's website. From the business and commerce source guidelines, "Websites and publications of trading companies, organizations and charities are a marketing communication channel and should be treated with caution. These media can be used for primary data about the organization's view of itself and may have clear bias related to commercial interests. Effort should be made to corroborate the reference with an independent source in order to maintain a neutral point of view."

To be a really good encyclopedic article, we need to assemble it from secondary sources: It's not about what GNU says about their product, it's about what other reliable sources we can cite say about it. This is a lot harder job (I'm just learning!) but it's kind of fun. I hope this helps. Msnicki (talk) 22:04, 12 March 2011 (UTC)[reply]

Grandscribe has again inserted GNU's own description of Bash into the first line of the article. It positions Bash as whatever GNU says it is with obvious advertising copy about its "advanced features for both interactive use and shell programming." It's peacock language. Bash and the other important Unix shells are all about a quarter century old and all are very stable; how "advanced" can any of them be anymore? I've already reverted this stuff twice and I've explained why WP policy asks that we not simply quote from a primary source.
Because I've already used my 2 reverts, I won't do another. This needs discussion and others need to weigh in so we can find an actual consensus, please. Msnicki (talk) 22:14, 13 March 2011 (UTC)[reply]
Your interpretation of the guidelines does not apply in this case where we use the information supplied by the developer of a program such as Bash as a reference to write a definition about it. Wikipedia guidelines do not forbid the use of information supplied by the developer of a program about what the program does. Bash is a a program from the GNU project. The use of information about programs from the GNU project taken from the GNU website IS NOT in violation of any Wikipedia rules. So please stop using the guidelines to try to support your POV.--Grandscribe (talk) 22:18, 13 March 2011 (UTC)[reply]
Third Opinion
  • We should not be copying phrasing verbatim like we have from [5]. This is a borderline copyright violation.
  • We should avoid puffery. We don't let the people who make things "define" them for us, without attributing the description to them. In other words, we don't let them speak in "Wikipedia's voice".
  • This isn't really a question of sourcing per-se. Primary sources are reliable enough for self-description, but we do not necessarily report what they say as factual, especially when it involves puffery.

Gigs (talk) 18:26, 15 March 2011 (UTC)[reply]

Based on this third opinion, I have undone the edit in question. Msnicki (talk) 19:18, 15 March 2011 (UTC)[reply]
User Msnicki please respect Wikipedia guidelines. My contribution is a valid one, using valid sources, in accordance with Wikpedia rules. You are not allowed to make edits based simply on the opinion of another editor. That is POV. Read WP:NPOV.--Grandscribe (talk) 20:14, 21 March 2011 (UTC)[reply]
When you and I failed to agree, I made a request for a Wikipedia:Third opinion. It's the process we're asked to follow to resolve disagreements like this one between just two editors. Msnicki (talk) 20:20, 21 March 2011 (UTC)[reply]

My take on current disagreements

(Grandscribe pointed me to this.)

Here are some thoughts from skimming the history:

  • "advanced features" is too subjective and complimentary
  • Half the intro can't be given to the name - that sort of trivia can go in a history or background section
  • It's a GNU project launched before "open source" existed. It was developed to propagate the four freedoms. Retroactively calling it an open source program is not encyclopaedic.
  • "C commands built in" is too jargonish for the intro
  • Bourne shell should be linked
  • Third-party sources should be used in preference to citing the developer (I'm pretty sure this is in the Wikipedia rules), except when the purpose of the citation is to show that the developer says, or that the GNU project says something.
  • Sentences and wordings shouldn't be copied from other webpages (unless they're in quotation marks). gnu.org publishes what GNU wants to say about Bash. Wikipedia is writing an encyclopaedia entry, which is different.
  • Bash isn't a clone. It started as a clone but that hasn't been the focus for the past two decades. gnu.org says "most"[6] sh scripts will work in Bash, so it's not even completely compatible.
  • The rebirth of "born again" isn't necessarily "spiritual", and this article probably isn't the place to explain what "rebirth" is. The link to born again does that.
  • What's the pertinence of the "bashing together" comment? (it's in the intro, with this reference: [7]) Is the author of that comment somehow important? If I find someone making an off-hand comment on a mailing list about Bash being comparable to black ash, should that also be put in the intro?

I'll make some edits in the coming days. Most of the references that have been used don't have a "quote" field, so it's hard to know exactly what information they're backing up. That makes it hard for me and others to re-use those references. That's an exercise for whoever knows the content of the referenced pages - but it would be better for Wikipedia if the "quote" field was used. Gronky (talk) 23:24, 21 March 2011 (UTC)[reply]

The citations used in the first paragraph are all fairly short and all are on-line. But as suggested, I've added quotes to a number of them. The Bourne shell is linked in the second sentence. Bash may not be a clone now but that was its initial intent; Stallman called it an "imitation". People really did talk about Bash as bashing-together the features of sh, csh and ksh; the citation is intended as a contemporaneous example. Msnicki (talk) 00:52, 22 March 2011 (UTC)[reply]
I see you've just made a number of changes. I don't think they're better at all. There are no citations to support the wording (e.g., "feature-compatible", "Unix-like") you've chosen, unlike what we had before. I don't know why you would move the author's name out of the first sentence. I thought we had a consensus (as shown in the article title) that Bash is a Unix shell, not a "Unix-like" shell. The citations don't match the claim that "Brian Fox to develop Bash from 1988 to 1993." You've dropped the reference to bashing together, which I think had a valid citation. You've changed the wording from "begin coding" to "began developing" but the citation (which is just the code) doesn't support that; he could have done some work before starting the coding.
I would like to revert this edit but first, I would like to hear comments from others. Msnicki (talk) 03:39, 22 March 2011 (UTC)[reply]
I agree, the latest changes make the lead para worse and are not properly supported by the refs. The previous version was better. - Ahunt (talk) 12:30, 22 March 2011 (UTC)[reply]
Based on Ahunt's agreement with my concerns, I have undone Gronky's edit.
I suggest the article definitely needs improvement but that the problem isn't the first paragraph. The problem is that the rest of the article simply isn't done. The history section would benefit from an additional paragraph or more discussing how Bash evolved through later releases. And the features section is completely random. It lists key bindings even those are part of Readline, not Bash, but doesn't even list Bash's basic control structures or other facilities. (Compare the content here to that of C shell article.)
I think we can make this article much better, but probably not by just quibbling over the first paragraph. Msnicki (talk) 14:14, 22 March 2011 (UTC)[reply]
  • I wrote "Unix-like" because Bash was not written for Unix, it was written for GNU. How can it be a "Unix shell"?
  • Why the sensitivity about having the name of one of the authors in the 2nd or 3rd sentence instead of the first? How (and where) was it decided that Chet Ramey didn't deserve a first-sentence mention? His name is already in the infobox and the history section, having it in the intro at all seems strange.
  • The "bashing together" citation only proved that someone once used this set of words. There's nothing to suggest that this was the reason for the name or the philosophy of the program's development.
  • "coding" is programmer slang.
Gronky (talk) 14:19, 22 March 2011 (UTC)[reply]
Bash is a Unix shell by consensus that "A Unix shell is a command-line interpreter or shell that provides a traditional user interface for the Unix operating system and for Unix-like systems." Brian Fox is not merely "one of the authors," he is the one and only original author. Chet Ramey has been the maintainer but he is not the author. (Please see the discussion at WP:Articles for deletion/Chet Ramey.) The bashing together remark was commonly heard in conversations contemporaneous to the release of Bash, reflecting the obviousness of that word association to English speakers. (I know that from being in some of those conversations at the time but of course personal knowledge isn't useful for a citation.) The citation simply establishes that the phrase was used and when that happened. Msnicki (talk) 14:46, 22 March 2011 (UTC)[reply]
Btw, I do agree with your point (and your edit) that the better term is free software, not open source. Msnicki (talk)
It is good to see that Gronky has been helping a lot to improve the definition for Bash. It is little better now.But it still needs to be further improved. Too many lines of the inrodutcion are spent explained the acronym and not what Bash really is and what it does. --Grandscribe (talk) 08:15, 23 March 2011 (UTC)[reply]
Could you start a second paragraph in the intro or do something to flesh out the features section? Msnicki (talk) 14:45, 23 March 2011 (UTC)[reply]

gnu shell in 1986?

Richard Stallman says in this 1986 speech:[8]

A shell I believe has already been written. It has two modes, one imitating the BOURNE shell, and one imitating the C-shell in the same program. I have not received a copy of it yet, and I don't know how much work I'll have to do on it.

More info sought. Gronky (talk) 20:37, 22 March 2011 (UTC)[reply]

That sounds like a reference to the same prior developer Stallman was referring to in his 1988 comment, "For a year and a half, the GNU shell was "just about done". The author made repeated promises to deliver what he had done, and never kept them." I have not been able to find any reference to say who that individual might have been. Msnicki (talk) 20:53, 22 March 2011 (UTC)[reply]
Ok. Looks like a dead end. Gronky (talk) 21:11, 22 March 2011 (UTC)[reply]
LOL. I hope not. I'd like to know what happened, wouldn't you? I think there's a cool story there if someone can find a citation somewhere. Msnicki (talk) 21:18, 22 March 2011 (UTC)[reply]

Authorship

When Microsoft or Apple publish some software, they're the author, and the Wikipedia article says so. For Bash, the equivalent author is FSF.

Bash didn't come into being thanks to Brian Fox. If Fox was busy, FSF would have hired someone else. Further, for Bash's 22 years, FSF has been the publisher.

For the question of "who's fingers tapped the keys?", it seems Chet Ramey did as much as Fox. More by some measurements. This is evidenced here: Wikipedia:Articles_for_deletion/Chet_Ramey. That discussion concludes that Ramey wrote more than Fox, and that Ramey isn't notable enough to get a Wikipedia article. That suggests that the Fox article should maybe be proposed for deletion (but my vote would be "keep" - I'm no deletionist).

From the above-linked Afd on Chet Ramey, there are two important-ish points:

  • Bash 4.1, for example, contains an AUTHORS file. It lists Fox 214 times, and Ramey 400 times.
  • The program size has grown by a factor of 20 (referring to Fox's Bash compared to today's (i.e. Ramey's) Bash

Those are testable/provable arguments for giving Ramey more credit than Fox (for fingers-at-keyboard). What's the argument for giving Fox as much credit as Ramey?

It seems to me that Ramey may have done more, but I'd give them equal credit, for the sake of simplicity. And FSF should be credited. Gronky (talk) 22:37, 22 March 2011 (UTC)[reply]

Oh, my, Gronky. Do we have to go there again? I think this got decided at WP:Articles for deletion/Chet Ramey: A maintainer is not the same as an author. Authors of Microsoft and Apple software are reported when known, e.g., HPFS by Gordon Letwin or QuickDraw by Bill Atkinson and Andy Hertzfeld. The GNU Project gets credit in the first sentence along with the author. How much clearer can this attribution get? Msnicki (talk) 22:43, 22 March 2011 (UTC)[reply]
Go where again? I just got here. Where was it decided?
If Fox authored A, and Ramey authored B, and Bash is A+B, why should Ramey not get any credit? If Ramey did nothing substantial, then he shouldn't be mentioned, but no one's suggested that. On the contrary, the only verifiable comments on this have been to say that Ramey did more than Fox. Maybe those comments are wrong, but "let's not discuss this" doesn't prove support either argument. In any case, this issue isn't terribly important to me. If anyone's hell bent on keeping Fox's name high up in this article, I won't discuss it for long. But I would like to note that, from reviewing the previous discussions, it seems the data says that Ramey is more the author of today's Bash than Fox is. Gronky (talk) 22:53, 22 March 2011 (UTC)[reply]
Then you missed the part where Chet Ramey became a redlink because it was decided he was a maintainer, not an author, and didn't clear the bar for notability. Msnicki (talk) 23:09, 22 March 2011 (UTC)[reply]
No one there said that his role regarding Bash was insufficient. (But this isn't important to me.) Gronky (talk) 23:23, 22 March 2011 (UTC)[reply]
(Note to readers: Msnicki has expanded his 22:53, 22 March comment, so I'm now replying to the new version of his above comment)
I don't care about Fox v. Ramey as much as you, but I will point out that the Afd you link to doesn't contain the decision you claim.
As for FSF, ok, I take your point about some MS and Apple software having individual authors. There is still a distinction worth making: lots of software was developed for GNU, but Bash is special in that it was important enough that *FSF* raised funds and paid someone to write it. Gronky (talk) 23:06, 22 March 2011 (UTC)[reply]
Of course I think it's important that FSF paid for it. That's why I made this edit. Msnicki (talk) 23:57, 22 March 2011 (UTC)[reply]

"clone" isn't quite accurate

I've nothing against the word "clone", it's neither positive nor negative. But FSF didn't set out to just "clone" Unix. Being Unix-compatible was very important (but not crucial - incompatibilities were accepted), but the GNU project's goal was always to produce software that users would like. This was in the initial announcement of GNU:[9]

GNU will be able to run Unix programs, but will not be identical to Unix. We will make all improvements that are convenient,

There are many more if anyone doubts this.

So, GNU programs are not really "clones". Wine aims to "clone" the Windows API, as they say, their aim is "bug-for-bug compatibility". There are many descriptions that are more accurate; one is "an extended replacement for the Bourne Shell", in Sam Williams' Free as in Freedom 2.0. Gronky (talk) 22:47, 22 March 2011 (UTC)[reply]

This is back to the question of what Wikipedia should say about Bash. We can't let GNU speak in Wikipedia's voice, as was pointed out earlier. We need consensus about how we describe things and the terms we use. Clone has a consensus definition, "In computing, a clone is a hardware or software system that is designed to mimic another system", that seemed appropriate. I'm open to suggestions but so far, I haven't heard one that sounds better. Msnicki (talk) 23:01, 22 March 2011 (UTC)[reply]
Consensus? Where's that?
None of the refs say that Bash is a clone.
I've given a third-party ref calling it "an extended replacement" (Sam Williams has no affiliation to FSF), and a GNU ref saying that writing clones isn't their goal. Gronky (talk) 23:18, 22 March 2011 (UTC)[reply]
The consensus about the word clone is whatever it says on that page. If I thought it was wrong, I would argue it there. The word extended is Wikipuffery. Replacement is neutral and could be used but it doesn't seem better. The WP clone article goes on to describe the compatibility issue that clones, including Bash, typically have to address but which true replacements (e.g., cars for horses) may not have to. Clone is a better match for Stallman's description of Bash as an imitation (which might be another alternative, but still not as good.) Msnicki (talk) 23:27, 22 March 2011 (UTC)[reply]
The Clone (computing) article has, after 7 years, fewer than 50 edits and not a single reference. It needs fixing, but I don't have time. It doesn't even give an in any way clear definition of what it's talking about.
"extended" is accurate. That's what Bash is to the Bourne shell. Or as you'd say, "extra things have been bashed onto it" :-)
I agree that "replacement" isn't optimal, but, since you've set the tone of this cooperation to belt-and-braces-else-Msnicki-reverts-you (1, 2, 3, 4, 5, 6, 7, 8, 9), I think sticking to a wording which has references is the only solution. Gronky (talk) 00:15, 23 March 2011 (UTC)[reply]
What we should do is request opinions from others. This is a consensus project. No one owns anything. I think clone is better than anything else I've heard but if you can convince a simple majority of whoever cares to weigh in on this that there's something better, I'm totally okay with that. That's how it works.
Comments, please? Who prefers clone and who prefers extended replacement (or something else)? Msnicki (talk) 00:24, 23 March 2011 (UTC)[reply]
In reviewing this I agree that "extended replacement" is too close to peacock language or marketing jargon and our job here at Wikipedia is to write an encyclopedia, not present anyone's marketing campaign. I also think that "clone" is too loaded a term. I would suggest the sentence be more neutral and just read "referring to its initial conception as a free software replacement for the Bourne shell (sh)". - Ahunt (talk) 01:00, 23 March 2011 (UTC)[reply]
Okay, I'm already outvoted. I'll make the change. Thanks for the discussion. Msnicki (talk) 01:10, 23 March 2011 (UTC)[reply]

A proposal for some new paragraphs

Conceding my own (at times) unhelpful contributions, we seem to fighting over details of what's there already rather than cooperating to tell more of the story.

I propose (purely in the spirit of brainstorming) that it would be useful to start two new paragraphs.

  • A second intro paragraph, something like "Bash is typically used as a command line interpreter running in a text window but is also popular for scripting. It has been widely distributed with versions available for <list of systems>. It is the default shell on <list of systems>. As a replacement for sh, it provides support for all the facilities of sh except <whatever>. In addition, it supports <list of features> borrowed from csh, <list of features> from ksh and its own unique features, including <whatever>. Today, ..."
  • A second history paragraph, maybe something like "Since it's initial 0.99 beta release by Fox, the community of developers who've contributed to Bash has grown to over <number> individuals in <number> countries. In release xxx in 19xx, <list of features> were added. In release xxx ... Today, ..."

Thoughts? What new facts would be most interesting to add next? Would anyone like to try his hand at getting us started? Msnicki (talk) 16:52, 25 March 2011 (UTC)[reply]

That looks like a good idea. Both those would be useful to the article, provided the "Xs" can be filled in and referenced! - Ahunt (talk) 17:02, 25 March 2011 (UTC)[reply]
How about if we move the first Features paragraph to the intro and then work to make it better? It's rambling and lacks any citations but it's a start. Msnicki (talk) 16:07, 26 March 2011 (UTC)[reply]
We should be careful to keep jargon out of the intro, as much as possible, and for "default shell", it might be better to say "default login shell", or something else since /bin/bash is almost always the shell that users get by default when opening a command line, but some systems such as Debian have made /bin/sh a symlink to a less feature-rich shell with a faster start-up time (Dash, IIRC). Was compatibility with ksh and csh ever claimed, or was Bash's philosophy a "best of breeds" one? If the latter, it might be best to explain Bash's broad feature set in terms of providing all useful things / all things users want rather than specifically providing ksh or csh features. Gronky (talk) 13:47, 28 March 2011 (UTC)[reply]

intro still wrong about name

  1. The intro erroneously says the name refers to Bash being free software.
  2. It's also wrong to say the name is a description. The comment about "bashing things together" is just a remark by someone after the name was chosen. I think it's irrelevant, but that's another issue. The issue here is that it's wrong to say that this is what the name is.
  3. It also seems wrong to say that Bash is a pun and an acronym - more accurately, it's an acronym for a pun. ("Bash" isn't a pun. "Bourn again shell" is a pun.)

I'll try to fix these problems. There's also still no mention in the intro of the author, FSF. Gronky (talk) 14:01, 28 March 2011 (UTC)[reply]

Done. Gronky (talk) 14:39, 28 March 2011 (UTC)[reply]
Gronky, you must know this was a contentious edit. I don't think this is better and I don't agree with your reasoning. Once again, can we get some other opinions, please? Msnicki (talk) 15:10, 28 March 2011 (UTC)[reply]
I have reverted those additions for now. User:Gronky, making a proposal, asking for opinions to gain a consensus and then making the edits anyway is not a good-faith way to proceed. You need to make your proposal and then wait at least a few days to gain consensus. If your proposals are good ones then there is no need to rush the process. In this case I don't think your changes are an improvement and the previous text was more balanced and neutral. - Ahunt (talk) 15:30, 28 March 2011 (UTC)[reply]
@Msnicki: (What's a "consensus edit"? One that requires consensus before making the edit?) I didn't expect anyone to be sensitive about these changes. They seems pretty clear when you look at it. There were factual errors, I fixed them.
@Ahunt: The current intro is factually wrong. It says that "Bash" means that the software is free software. That's nonsense (partly or wholly of my making). It also says that "Bash" is a pun, which is flat wrong. And it says that "Bash" is a description of the development philosophy, which again is completely unfounded.
I await someone proposing an alternative way to fix these three problems. Gronky (talk) 22:25, 28 March 2011 (UTC)[reply]
If you don't think Bash is free software, why did you make this edit? Msnicki (talk) 22:44, 28 March 2011 (UTC)[reply]
Of course it's free software. I've always said so. The error is in the claim that "Bourn-again shell" refers to it being free software. That's false. The name refers to Bourn shell, and "born again". There's no free software reference within the name. Gronky (talk) 22:50, 28 March 2011 (UTC)[reply]
  • Re: bashing together, the term bash was much more popular through the 70s and 80s as a term for a Bash#A party or gala event (where people or music or whatever mixed.) Young adults then certainly knew the term because it was in common usage. I don't think it is today. (I haven't heard anyone tell me they went to a bash in at least 20 years.) Would citations that establish that fact possibly resolve this? Msnicki (talk) 18:13, 28 March 2011 (UTC)[reply]
You've replied by saying that "bashing" can be used grammatically as a verb, but that was never in question. The error in the current intro is the claim that the name of this software is a description of it's development philosophy. If you have a citation which shows the software's name-giver as confirming this, then the claim could stay. Otherwise, it's flat wrong. You seem intent in keeping some form of "bashing" sentence in the intro. I think that's a bad idea, but I give up. "Bashing" can stay. Factual inaccuracies (i.e. the claim that the software's name refers to the developers bashing features together) can't. Gronky (talk) 22:28, 28 March 2011 (UTC)[reply]

On each issue:

1. Agree.
2. Agree. But think the post-remark is relevant.
3. Semi-agree. This is true, but a technicality.

Niluop (talk) 04:24, 17 April 2011 (UTC)[reply]

  • Comments from non-involved user: First, when requesting comments you should try to keep the requests short and concise and not have a lengthy discussion as in the thread above and the sections below. I have not read these parts, so I will only comment based on the three issues listed above. I believe all points are irrelevant for the introduction and should be moved to a separate section. Then a simple rewrite should be able to solve the issue. Instead of saying that "the name is" you can use a weaker "the name has been described as a" (or something similar). Labongo (talk) 19:03, 18 April 2011 (UTC)[reply]
  • What would you think about cleaning up the second paragraph and moving it up to immediately after the opening sentence, "Bash is a Unix shell written by Brian Fox for the GNU Project.", making the remainder about the name the second paragraph? You can't just move the second paragraph as-is because it's an unsourced jumble. But if someone would be willing to clean it up (see my comments above), I would be supportive. Msnicki (talk) 19:17, 18 April 2011 (UTC)[reply]
  • I believe the suggested changes would make the intro better. The origin of the name description is in my opinion not important enough to be mentioned in the introduction, but can be in either the history section or in a separate section. Labongo (talk) 21:24, 26 April 2011 (UTC)[reply]

FWIW, here's the text I proposed

Nobody has commented on the substance of the changes I made. Does anyone have any problems with the edit itself? Here's the text:

Bash is a Unix shell written for the GNU Project by Brian Fox while working at FSF. The name is an acronym for Bourne-again shell, which is a pun referring both to its initial goals of being a mostly-compatible replacement for Bourne shell (sh)[2][3][4] and being born again, a term for spiritual rebirth.[5][6] The name can also be said to be descriptive of what it did, bashing together the features of other Unix shells, including csh and ksh.[7] Bash is free software, distributed under the terms of the GNU GPL.

. Gronky (talk) 22:53, 28 March 2011 (UTC)[reply]

  • What do you mean, "no one has commented"? I told you it wasn't better, and why, and so did Ahunt, who then reverted it. If that wasn't sufficient, what does one have to do to register disagreement? Msnicki (talk) 22:58, 28 March 2011 (UTC)[reply]
I said "Nobody has commented on the substance of the changes I made." My change was immediately reverted but nobody has said a word about why. Does anyone disagree that the three factual errors exist? What's wrong with my fix? If my fix isn't used, how do others propose we fix these errors? Gronky (talk) 23:07, 28 March 2011 (UTC)[reply]
  • Yes, I disagree that these three claimed factual errors exist. That was the whole point of the citations with each statement as it now stands, to establish the facts. What's wrong with your "fix" is a laundry list of problems, starting with the demotion of the author, the double-reporting of GNU and FSF (variants on the same thing, especially then) in the first sentence and wording that doesn't match the citations. Does this count as a comment? Msnicki (talk) 23:13, 28 March 2011 (UTC)[reply]
Thanks for commenting on the substance.
The author hasn't been demoted. He's mentioned in the very first sentence. (Which is a lot, give that the jury's still out on whether he's the mostly authorly contributor - but that's another thread.) The citations don't contradict anything I said about the intro having factual errors. GNU and FSF arent' the same thing. GNU has tens of thousands of developers. FSF had a dozen at it's highest. Gronky (talk) 23:19, 28 March 2011 (UTC)[reply]

Detailed explanation of how the intro is poorly written

The intro is misleading and weak because it is poorly written. My improvements have been reverted over and over, so I give up. Here are my explanations of the intro's problems. The current atmosphere of this collaboration indicates that these improvements will be ignored here, but I'll detail them anyway so that they might help someone else in the future, or might help the people who are currently reverting me to improve their writing in other articles.

  1. The intro says "Bash is a pun", which is wrong. "Bourn-again shell" is a pun. This error is obvious.
  2. The "Bash is a description" error is fairly obvious (to anyone who already knows the whole situation), but not so obvious to explain. The issue is that when the intro says "Bash is a pun" and "Bash is an acronym", the meaning of "is" is that this name was chosen because it conveys this pun and acronym. It's an existential "is" - we're talking about the reason for the name being "Bash" instead of something else. Tacking on that "Bash is a description", is misleading because, this time, it's shorthand for "someone once commented that", but the reader isn't told that this is shorthand. The only conclusions the reader can take are that, either, all three uses of "is" refer to "someone once commented that", in which case the first two are factually wrong, or that all three are existential "is", which means the name "Bash" was chosen because it's a description, which is factually wrong. So you see, there are two different forms of "is", and by mixing them together without informing the reader which is which, the intro is inevitably wrong, no matter which interpretation the reader gives to "is".
  3. Last, the intro says that the name "Bash" refers to the shell being free software. Bash is free software, but the name contains no reference to this.

Apart from these writing errors, there is the problem that the author, FSF is omitted. The FSF hired very few programmers. Only for the most important tasks, for which no external non-paid contributor could be found. This would be worth mentioning for any organisation, and is even more noteworthy in this case.

And finally, there's the issue that Chet Ramey seems to have contributed at least as much, or more than, Brian Fox to Bash. This is what has been numerically, confirmably demonstrated in a previous Afd. However, keeping Brian Fox's name, and only Brian Fox's name, in the first line of this article seems to be Msnicki's most important goal. Getting the author attribution right isn't important enough to me for me to continue looking into this issue. Gronky (talk) 19:28, 29 March 2011 (UTC)[reply]

I'm not sure it's appropriate for the lede to focus so much on the name in the first place. The stuff about the name should be in there somewhere, but ideally the lede should summarize the rest of the article, not present unique information. It's harder on an article like this that isn't fleshed out as much, but that's the goal for a Good Article. Something to keep in mind. Gigs (talk) 03:12, 30 March 2011 (UTC)[reply]
What do you think of the proposal (above) for a second paragraph in the intro? Would you be willing to get us started? Msnicki (talk) 03:22, 30 March 2011 (UTC)[reply]
A month ago, I moved the features paragraph to the top and rewrote the into based on the discussion here, borrowing some material from the intro to the C shell article. To my surprise, no one has complained, so I'm hoping we've closed on this issue and have a roughly acceptable intro. Msnicki (talk) 14:56, 30 May 2011 (UTC)[reply]

Requested move

The following discussion is an archived discussion of a requested move. Please do not modify it. Subsequent comments should be made in a new section on the talk page. No further edits should be made to this section.

The result of the move request was: no consensus to move page as suggested. With input from only 4 editors, evenly split between support and opposition, this was kind of a tricky call. The current title isn't terrible, though, and before moving the page, I'd like to see more input from the community. If it seems worth doing, an RfC might be appropriate, or perhaps a discussion involving an appropriate WikiProject, such as the two with banners at the top of this talk page. - GTBacchus(talk) 14:30, 23 June 2011 (UTC)[reply]



Bash (Unix shell)Bash (software) – Contested move. Per WP:NCDAB:

If there are several possible choices for disambiguating with a class or context, use the same disambiguating phrase already commonly used for other topics within the same class and context, if any. Otherwise, choose whichever is simpler. For example, use "(mythology)" rather than "(mythological figure)".

(software) is both the most commonly-used disambiguator, and the simplest. "Unix shell" is overly specific. An argument was made that bug bash also falls under "software terms that use the word bash", but I believe that article is not ambiguously titled and probably doesn't need a separate article in the first place. Chris Cunningham (user:thumperward) - talk 13:45, 15 June 2011 (UTC)[reply]
  • Oppose. There really is no such thing as the most commonly used disambiguation term for software. What is common is that the term usually helps tell what it is, e.g., C (programming language) or Cairo (operating system). After long debate, consensus on the opening words of the article is that "Bash is a Unix shell". All the rest of the Unix shells either have "shell" in the name of the article, for example, C shell, Bourne shell and Z shell, have names so unusual they can't be confused or are themselves disambiguated as Unix shells, e.g., wish (Unix shell). Perhaps because it's awkward on the tongue with the repeated "sh" sounds (or, as thumperward argues, because bash is an acronym), no one says, "Bash shell", they just say "Bash". So this is why we don't already have "shell" naturally in the title. The proposed dab, "software", tells almost nothing and doesn't even dab very well: Software developers also talk about bug bashes where the idea is to focus on fixing bugs, not adding any new features. Which software bash are we talking about? (thumperward, I can promise bug bashes are not parties; they're more like hell weeks for the developers.) Msnicki (talk) 14:12, 15 June 2011 (UTC)[reply]
Most of those 221,000 articles discoverable by Google (but certainly not in any category or list here on WP) are about truly random software products. Many are applications and others are about software widgets that defy better classification except to say it's software and if you want to know more, read the article. For example, consider Steam (software): "Steam is a digital distribution, digital rights management, multiplayer and communications platform ..."; who knows how to classify that except that it's some sort of software. It's a safe bet that a lot of those 221,000 articles would never survive an AfD and might disappear with simple PRODs. By contrast, Unix shell is a widely-understood descriptive classification with defining characteristics. The only reason there aren't thousands of articles disambiguated by "(Unix shell)" is because there are only a finite, much smaller number of such things. Msnicki (talk) 14:56, 16 June 2011 (UTC)[reply]
The specific rationale behind the move request was that it follows the advice given at WP:NCDAB. That there are not many Unix shells indicates that using (Unix shell) as a disambiguator is too precise. You may disagree with choosing simple dab terms over more precise ones, but that's what the guideline says we should do. Chris Cunningham (user:thumperward) - talk 15:08, 16 June 2011 (UTC)[reply]
Okay, fine. I concede that "(Software)" is far more common (and from information theory, far less informative) and would allow us to obey the guidelines according to your interpretation that a dab should be as generic as possible. Notably absent is any claim this would improve the article. I still don't think it's a good idea. Msnicki (talk) 15:56, 16 June 2011 (UTC)[reply]
  • Support - although my default position is to oppose moves unless they "fix" a real problem. In this case, it seems the vast majority of user of bash by now are not strictly "Unix" but related environments like Linux and even Cygwin. Albeit Unix shell is the article that covers them all, so it might go down the slippery slope of moving that one too. W Nowicki (talk) 17:36, 16 June 2011 (UTC)[reply]
"Unix shell" isn't just the title of that other article. It has a consensus definition, "A Unix shell is a command-line interpreter or shell that provides a traditional user interface for the Unix operating system and for Unix-like systems." And it's also in the opening words of this article as well, "Bash is a Unix shell ...". The question of whether Bash is really a Unix shell has been raised earlier on this page but compared to other questions of what should go in the opening paragraphs, this is has been remarkably uncontentious. Msnicki (talk) 18:07, 16 June 2011 (UTC)[reply]
The above discussion is preserved as an archive of a requested move. Please do not modify it. Subsequent comments should be made in a new section on this talk page. No further edits should be made to this section.

Further discussion

User:Thumperward has contacted me about the above move request, asking that we revisit the question. I acknowledge that very few people contributed to the discussion, making it difficult to come down on one side or another. If a move is clearly appropriate, I'm happy to help with it, but I'd like to hear from a few more editors, to get a feel for what the consensus really is regarding this, and possibly other similar titles. Therefore I'm posting notes to a couple of places around the site and asking the question: Should this article be renamed? Please discuss here, and let's see what we think. -GTBacchus(talk) 05:26, 26 June 2011 (UTC)[reply]

Thumperward is out of line, starting with his misrepresentation of my position to you on your talk page as his justification for reopening this discussion. He's been difficult about this from beginning (see User_talk:Thumperward#Moving Bash) and I think he needs to realize that sometimes, just because you think you're right, doesn't mean others will agree or that you will get your way. He should accept that his proposal was considered for a week, he didn't get support and it's done. Msnicki (talk) 05:53, 26 June 2011 (UTC)[reply]
Had I taken part in the move request, I would have Supported per WP:NCDAB and the original nom. Disambiguators are to be as concise and general as possible. --Cybercobra (talk) 07:03, 26 June 2011 (UTC)[reply]
It's a very hard decision given that one rarely refers to operating system components as "software". I note that the anonymous comment claiming that there is more software of the same name, while technically correct [10], appears to be referring to a non-notable HTML editor. If we rename the article, we will probably displace the company "Bash Software" as the top Google hit for its name. But that's not our problem. Using the name of a ubiquitous Unix tool in the name of a Windows-centric software company was a remarkably stupid decision. Hans Adler 13:11, 26 June 2011 (UTC)[reply]
No surprise, I totally agree that people rarely refer to OS components as merely "software". I think thumperward has overstated his case. If you look at WP:NCDAB, you'll notice that one of the examples disambiguates with "set theory"; if his interpretation was correct, why didn't the example disambiguate with "mathematics"? There is no answer. It's a judgment call. I think the example supports picking a term that's actually illuminating of what the thing is, not merely the most generic and completely meaningless term possible, especially when it's not even the term most people would expect or use. Msnicki (talk) 14:00, 26 June 2011 (UTC)[reply]
Nothing being proposed is "completely meaningless". Let's try to let it drop about Thumperward, and let other people weigh in for a while. Does that sound alright, Msnicki? -GTBacchus(talk) 17:23, 26 June 2011 (UTC)[reply]
Good point. There is no other notable meaning of union in mathematics, although there are two in programming. It can be found under union (computer science), which I find a bit misleading since (1) it's not so much computer science as programming, (2) unions in the set-theoretical sense also appear in computer science – both in its mathematical theory and in the union-find algorithm, and (3) there is also union (SQL).
Application of this guideline may have drifted a bit since that example was included, and anyway, the "union" disambiguation is far from optimal in its current form. Hans Adler 20:40, 26 June 2011 (UTC)[reply]

Just to note that for all this rhetoric about my not being right about the guideline ("overstating my case", natch), I did post the figures above: we have 221,000 articles which use this convention right now, and while head counts during discussions are often poor indicators of consensus they're an excellent indicator when simply looking at established practice. If the example given at NCDAB is bad then let's fix NCDAB: clearly (software) is not a bad example here, as over two hundred thousand articles follow that example. Chris Cunningham (user:thumperward) - talk 13:28, 27 June 2011 (UTC)[reply]

I don't really like Bash (software) here. How about Bourne-Again shell, for consistency with the other shells? Or Bash (shell)? --SarekOfVulcan (talk) 16:36, 27 June 2011 (UTC)[reply]

Nobody refers to bash as the Bourne-Again Shell. It'd be like moving GNU to GNU's Not Unix: the expansion is a joke, rather than a full name in any sense. And (shell) is nowhere near as general as (software), which (once again) is what both the guideline and the existing state of articlespace supports. Chris Cunningham (user:thumperward) - talk 09:26, 28 June 2011 (UTC)[reply]

Brace Expansion verbosity

I think that the Brace expansion section could be expanded a little more. The purpose being to demonstrate more commandline-fu:

ls *.{jp{,e}g,png}     # expands to *.jpg *.jpeg *.png - after which,
                       # the wildcards are processed

It may also be of note to expand on how quoting works in brace expansion:

ls a{*.txt,'*.png',\*.bmp}    # expands to a*.txt a*.png a*.bmp
                              # but a*.png and a*.bmp aren't processed as wildcards

Just my opinion. «ɧʒχχ (tOkk«n'trIb)» 20:45, 6 August 2011 (UTC)

How about, oh I dunno, finding an example from a reference rather than trying to create our own? It's only Unix articles which seem to have this obsession with teaching content to readers using editor-invented examples. Chris Cunningham (user:thumperward) - talk 12:35, 15 August 2011 (UTC)[reply]

Early shells did not support here documents

The article currently says: "Like all Unix shells, it supports filename wildcarding, piping, here documents, command substitution, variables and control structures for condition-testing and iteration.".

I placed a {{dubious}} tag. The first shell I used did not support here documents. If I am not mistaken Steve Bourne's description of here documents, in the Bell Systems Technical Journal, described it as a new feature. If I am not mistaken some of the other features also weren't supported by the earliest shells. Geo Swan (talk) 16:38, 5 February 2012 (UTC)[reply]

How far back do you want to go? Very few people ever saw UNIX prior to 1978, when the famous BSTJ issue devoted to UNIX appeared and in that issue, Bourne makes clear that his shell did support here docs. I have that issue (in my hands) and while he describes the feature, he makes no indication of whether it was new. But it's possible you may be thinking of an unrelated change to the way stdin worked for scripts, which Bourne called procedures. It's in the same paragraph where Bourne first mentions here docs but it really is unrelated. "During the execution of a shell procedure, the standard input and output are left unchanged. (In earlier versions of the UNIX shell the text of the procedure itself was the standard input.)"
Bill Joy's C shell also had here docs; they're described in Joy's 1979 paper, "An Introduction to the C shell". John Mashey has told me privately (sorry, wish I could share) that Joy only had the Thompson shell to work from, so here docs may have been in that one, too (though I concede the feature is not mentioned in the archived man pages.) If you go far enough back, perhaps you could find a time when the very first shell first compiled and probably it did not have here docs. But so what? The point here is that we have a consensus understanding of what a Unix shell is and it's based on what we understand today, not pre-1978, and it includes this feature, which bash also supports. That's really all this is about. Msnicki (talk) 17:27, 5 February 2012 (UTC)[reply]

Non-interactive Case

https://en.wikipedia.org/wiki/Bash_%28Unix_shell%29#Startup_scripts describes interactive startup of the shell. The non-interactive case should also be discussed, although I'm not qualified to make even a cursory draft. Regards, PeterEasthope (talk) 01:34, 22 May 2013 (UTC)[reply]

Meaning of $

It would be worth expanding on the meaning of the "$" sign in Bash. It isn't like the "this-is-a-variable" prefix in PHP/Perl, rather it acts as a unary operator. $...x... means "Do something with x and return the value", where the common case $x merely returns the value of x, but the $ operator also has all sorts of abilities such as lower-case, substring-removal, arithmetic evaluation, default-value substitution etc. [i.e. it's wrong to think that "variables are written to without a $, but read from with a $"] — Preceding unsigned comment added by RichardNeill (talkcontribs) 14:26, 25 November 2013 (UTC)[reply]

Delete keyboard shortcuts

Someone has lavished loving detail on the "keyboard shortcuts" section. But the list is way too detailed for this kind of article. And the list is basically useless. I have used bash for MANY years. Only a few of those "shortcuts" are of any use, for example CTL-C, CTL-R, CTL-V, CTL-Z. Many of the "shortcuts" are downright laughable, for example CTL-T, many others. It would be a huge waste of time for a practical user to learn most of the list items, and few if any of those "shortcuts" would ever be used. At least the list fits with the tone of the rest of the article, which is poorly written. 71.212.48.92 (talk) 07:12, 22 January 2014 (UTC)[reply]

First release date

We need to use the date stamp from the usenet article and this date stamp is from June 8, 1989. Schily (talk) 17:51, 17 November 2015 (UTC)[reply]

Sorry for my revert. I misread the date. I have no idea how I did that. You are correct. Msnicki (talk) 17:54, 17 November 2015 (UTC)[reply]

Qwertyus has edited [11] the Hamilton C shellarticle, removing a fair amount of content, arguing that the WP:SPS sourcing, e.g., of what the author was thinking, was inappropriate. One of Qwertyus's objections is to the Usenet sources; especially in light of our recent discussion of the release date for Bash, I think Qwertysus is wrong, we do use Usenet sources when they're best available and not controversial as to their authenticity or what claims they are being used to support. The article survived a WP:DRV at Wikipedia:Deletion review/Log/2011 May 8#Hamilton C shell in substantially the previous form, drawing a consensus that it was not obviously promotional. No one at the time voiced criticism of the content. On that basis, I think the content was fine. But Qwertyus is correct that I have a WP:COI, declared at that deletion review and also on the article talk page, so I do need to ask for others' opinions and I must respect your consensus. I am too close to this. Msnicki (talk) 20:05, 17 November 2015 (UTC)[reply]

Shouldn't this article have an infobox programming language too?

I understand that Bash is both a computer program (as are all Unix shells) and a programming language and hence I was surprised to not see a programming language infobox in this article underneath the software infobox (which would make its formatting resemble that of the MATLAB article, for example). Hence I am creating this section to ask why, in case this is more than an oversight (like perhaps some consensus was reached earlier on in this page's history that I am unaware of, that related to this). If this is merely forgetfulness, or the result of no-one having the time or inclination to create one, I am willing to create one filled with some basic info about the language. Brenton (contribs · email · talk · uploads) 13:40, 30 December 2015 (UTC)[reply]

Hello, Brenton
{{Infobox programming language}} is a superset of {{Infobox software}}. I believe you can simply upgrade the article to use the former and its unique fields. I am not aware of a field present in {{Infobox software}} but not in {{Infobox programming language}} but do feel free to have a quick check.
That said, replace the infobox only if you do have material for it. There is no obligation to use all its fields. I can see some of the fields in the current infobox is badly populated (like |operating system= and |language=). So, I hope you understand my concern.
Best regards,
Codename Lisa (talk) 15:33, 30 December 2015 (UTC)[reply]

Reference List

  1. ^ "MAC OSX Technology Overview - Command Line Primer".
  2. ^ Richard Stallman (forwarded with comments by Chet Ramey) (February 10, 1988). "GNU + BSD = ?". Newsgroupcomp.unix.questions. Retrieved Mar 22, 2011. For a year and a half, the GNU shell was "just about done". The author made repeated promises to deliver what he had done, and never kept them. Finally I could no longer believe he would ever deliver anything. So Foundation staff member Brian Fox is now implementing an imitation of the Bourne shell.
  3. ^ Hamilton, Naomi (May 30, 2008), "The A-Z of Programming Languages: BASH/Bourne-Again Shell", Computerworld: 2, retrieved Mar 21, 2011, When Richard Stallman decided to create a full replacement for the then-encumbered Unix systems, he knew that he would eventually have to have replacements for all of the common utilities, especially the standard shell, and those replacements would have to have acceptable licensing. {{citation}}: Check |author-link= value (help); External link in |author-link= (help)
  4. ^ C Programming by Al Stevens, Dr. Dobb's Journal, July 1, 2001
  5. ^ Richard Stallman (Nov 12, 2010). "About the GNU Project". Free Software Foundation. Retrieved Mar 13, 2011. "Bourne Again Shell" is a play on the name "Bourne Shell", which was the usual shell on Unix.
  6. ^ Gattol, Markus (Mar 13, 2011), Bourne-again Shell, retrieved Mar 13, 2011, The name is a pun on the name of the Bourne shell (sh), an early and important Unix shell written by Stephen Bourne and distributed with Version 7 Unix circa 1978, and the concept of being "born again".
  7. ^ Ian Darwin (June 13, 1989). "at&t-free ksh (was: job control is a bug, not a feature)". Newsgroupcomp.os.minix. Retrieved Mar 21, 2011. Yup, the gnu project's Born Again Shell ("bash") is an attempt at bashing all the features of sh together with many of those from both csh and ksh.

Bourne-again

I know this is not the focus of the article, but the term "born again", as alluded to in the intro, is neither a contemporary nor an American concept of Christianity. I would like to suggest the deletion of those two words. - BroVic (talk) 16:16, 30 August 2016 (UTC)[reply]

Our article on Born again appears to disagree with you. Msnicki (talk) 16:21, 30 August 2016 (UTC)[reply]
Oh, good. I will love to take a look.  :-). BroVic (talk) 18:15, 30 August 2016 (UTC)[reply]

Bashisms

I have heard this term used - in what I think was a mildly negative manner - to describe a feature or behaviour of Bash that is an extension of or at variance with in some circumstances either (?) the POSIX standards or other *nix sh-like command interpreters. A Wikipedia redirection bought me to Bash_(Unix_shell)#Portability but with not even a reference to this term. Further DuckDuckGo-fu (like Google-fu but DuckDuckGo don't track where you look) led me to http://mywiki.wooledge.org/Bashism?action=show&redirect=bashism which does seem a useful starting point, but it might be worthwhile to expand upon this term and that there are differences between bash and sh.

SlySven (talk) 01:25, 13 September 2016 (UTC)[reply]

Born again, again

Editor Msnicki reverted my trivial 2-word change to this language twice without any meaningful explanation, and then a third time, finally with the explanation: "Unhelpful (the term may not be familiar to all readers) and this change lacks consensus," accompanied by a threat on my user talk page to have me banned from Wikipedia for two years---what's with that?

Leaving aside Msnicki's angry and abusive misconduct here, let's just consider the change on its own rights, second issue first;

  • It's hard to see how one can start a talk-page consensus discussion about a change if the complainer won't state the nature of her objection. The initial change was part of a general copy-edit that involved a half dozen trivial changes, and the complainer gave no indication as to which of the trivial changes was at issue.
  • Yes, the term may not be familiar to all readers. So, I think, one should not be making unsubstantiated assertions about its meaning here, in an unrelated tech article. (In fact, in usual American usage, the term does not have anything to do with "spiritual rebirth," whatever that means --- it's just a label for a particular brand of fundamentalist Christianity.)

The article, I think, should just acknowledge that "born again" is a common catch-phrase in American English, which is being punned upon, without making unsupported and irrelevant theological assertions about the meaning of the term. Eleuther (talk) 07:46, 23 May 2017 (UTC)[reply]

I stand by my opinion that term, born again, may not be known to all readers and that it's unnecessary to force them to click a link to find out if the answer is only four words. I did not revert the rest of your changes; the rest seemed okay.
I'm sorry you took my templating you as a threat. I'm not an admin, I have no power to block anyone. Even if I were an admin, I still wouldn't be able to do anything because we're involved in the same content dispute. You can only be blocked by an uninvolved admin after a report, typically at WP:ANI or WP:AN3. It looked to me like you were about to violate WP:3RR and I didn't know if you knew the consequences. This is something you never want to do here. It results in an almost certain block, which will never disappear from your user history. I wanted you to stop before you did that to yourself. There are always other ways to work out a content dispute. It's never worth getting blocked. I would say that to anyone who I was worried wasn't aware of what could happen. Msnicki (talk) 16:29, 23 May 2017 (UTC)[reply]
I stand by my opinion that the term "born again" may indeed not be known to all readers, and therefore, a misleading definition of it should not be included here, in an unrelated tech article. Eleuther (talk) 06:17, 24 May 2017 (UTC)[reply]
The lede sentence in our Born again article states that "born again is a popular phrase referring to "spiritual rebirth"". If you disagree with that claim, as apparently you did in this edit, I think you should take it up on the Talk:Born again page. The lede in this article has been pretty stable for several years, so if you'd like to change it, the onus is on you to show that you have consensus support for the change. Msnicki (talk) 15:43, 24 May 2017 (UTC)[reply]
I will not do anything like that. There's no point in trying to change a false phrase that is protected by such an army of officious hammer-wielders. Please consider this discussion to be closed. Eleuther (talk) 06:46, 25 May 2017 (UTC)[reply]
Actually, now that I've looked at the article you cite, I need to point out that you are lying about what it says. It qualifies the definition from the start with "In some Christian movements, particularly in Evangelicalism, to be born again is a popular phrase referring (etc.) ..." In other words, it only defines the term in a particular religious context, which is the point that I've been trying to make all along. Eleuther (talk) 09:45, 25 May 2017 (UTC)[reply]
It's unhelpful to call someone a liar here on Wikipedia. That's a personal attack and that also can you blocked per WP:NPA. You are certainly welcome to your opinion regarding the content but if you'd like the article to reflect your opinion, you're going at it the wrong way. A better plan when you come across claims you disagree with is to present your own better sources supporting the language you prefer. Msnicki (talk) 14:37, 25 May 2017 (UTC)[reply]
The source you cite already directly supports the language I prefer. I don't need to cite any others. It clearly states that the term "born again" is used by some evangelical Christians to refer to a form of "spiritual rebirth" they believe they've experienced, however, the article goes on to say, in general usage, the term does not refer to "spiritual rebirth," it's only a label (not always flattering, I may add) that refers to such believers and their groups.
Thus, it's false and misleading for you to claim (in a non-sectarian tech article) that "born again" denotes spiritual rebirth. That assertion needs to be removed, Eleuther (talk) 10:56, 26 May 2017 (UTC)[reply]
Well, consider this, please, Eleuther. That sentence is supported by a reliable source stating the name is a pun on the phrase, "born again". What does that term mean and what was the significance of that choice? Was it just two random words that sounded good or was there a meaning and a connection to what they were building? The explanation of the term, that it denotes spiritual rebirth, is helpful in understanding there was a connection. Stallman was inspired to create a new philosophical and economic model for free software, completely recreating a free and open source version of Unix. We often refer to creative works as the result of inspiration, a word with origins in "divine guidance" in Middle English. So the pun is not accidental. They really were attempting a "spiritual rebirth" of the Bourne shell. Does that help? Msnicki (talk) 15:33, 26 May 2017 (UTC)[reply]
The ole imagination seems to be running in full gear here. The term "born again" is a common label or catch phrase in English. So the alternatives are not just (a) the random words sounded good together, or (b) Stallman (or whoever chose the name; the sources I've seen don't clarify that) was intentionally referring to form of "spiritual rebirth" of computer software. There is a much more plausible third alternative: (c) the pun simply refers to the common catch phrase. And anyway, even if Stallman (or whoever) was punning on the idea of spiritual rebirth, his meaning would not be that same as the "born again" that's used by believers, which I understand to be a form of re-baptism and re-connection to Jesus. This is not at all the same thing as deploring proprietary software licenses.
If you have sources that support your fantastic interpretation, please deploy them. But really, I think you need to start finding a way to back away from your fanatic opposition to this simple and obvious two-word edit. Eleuther (talk) 12:44, 27 May 2017 (UTC)[reply]
Well, again, you're welcome to your opinion but to have it reflected in the article, you're going to need to show that there's consensus support for your change. So far, nothing you've said has changed my mind and no one else has stepped in to support you either. That's what you need to fix. You need to get people on your side. Otherwise, it's not happening no matter how convinced you are that you're right.
We all have to deal with this on Wikipedia. Try to assume good faith and avoid thinking of this as winning or losing. Sometimes, you'll have a dissenting minority opinion; you're still entitled to your opinion, just not entitled to the outcome you'd like given the way we decide things based on WP:CONSENSUS. We all have to learn to be okay with that.
For more on how to deal with a content dispute like this one, consider the advice at WP:DISPUTE. One option available to you is a Request for Comment, where you could propose the specific change you'd like here on this talk page in a more formal way and ask for a WP:!VOTE. Msnicki (talk) 14:57, 27 May 2017 (UTC)[reply]
Phew. May I assume that was the firing of yet another attack template, i.e., that you didn't write all that officious stuff yourself? Otherwise, you're trying way too hard. Eleuther (talk) 10:53, 29 May 2017 (UTC)[reply]

As requested above, I've added two book sources [12] explaining the significance of the "born again" pun. Both are explaining the phrase in other languages to audiences who may not realize it has special meaning in English. One of the sources is Stallman himself explaining it in Italian. Msnicki (talk) 17:18, 27 May 2017 (UTC)[reply]

Born again, and again and again

User:Eleuther appears to object to any mention of what the term born again means, except to describe it as a "common"[13] or "sarcastic"[14] term. When Eleuther questioned it last May in the section immediately above this one, I reported adding two sources, including one from Stallman himself explaining the connection to the Christian expression "born again". At that point, the discussion seemed to end.

Eleuther has recently deleted the explanation and the two sources that supported it, in a series of edits including possibly editing while logged out,[15] accusing me of imposing my religious beliefs,[16] (how does he even know what they are?) and then edit warring even after a warning[17] requesting that we take it to this talk page, to delete the explanation,[18][19] then the sources,[20] claiming they were "bogus" and no longer "relevant" once he'd removed the claim they supported.

I think the connection to the use by Evangelical Christians is important, but more important, so does no less an expert than Stallman himself Through his FSF and his GNU projects, and through the creation of bash, Stallman hoped that he would change the way software was created and shared and with it, a completely free and open source software system that had everything Unix had. He absolutely needed a shell, so this was one of the few pieces he paid to have developed. So the name and the reference were significant to him, an allusion to his vision for a "spiritual rebirth" of software under his open source model and philosophy. Anyone is free to agree or disagree with me on exactly Stallman meant, but the simple fact is, he did say, in one of the deleted sources, that he was referring to the term as used by Evangelical Christians, which is all the article reported.

May I invite some other opinions, please? I think we should figure things out by discussion and consensus. I don't like edit warring at all. Msnicki (talk) 14:30, 3 March 2018 (UTC)[reply]

  • That anonymous edit was not by me. As you noted just above, I had pretty much forgotten the issue. But then that anonymous person made an obvious good edit that I agree with, and you slammed him/her with a revert. So I decided to weigh in on the issue again. Eleuther (talk) 14:20, 4 March 2018 (UTC)[reply]
  • You say that I seem to "object to any mention of what the term means," but that is exactly the issue --- the term doesn't have a single meaning. It means different things to different people in different contexts and sects, an issue that is properly discussed in the term's own article. It's seriously out of place to pick a particular sectarian meaning, and insert it here as the meaning, in the lead (no less) of an article on an unrelated, non-religious subject.
You wonder how I can know your religious beliefs --- well, I don't, except for the evident fact that they include a particular meaning of the term "born again," which you believe should be accepted uncritically in non-religious contexts like this article.
May I say further that your repeated invocation of "Stallman himself" borders on the bizarre. You seem to be saying that Stallman (a self-described "atheist of Jewish ancestry") is secretly pursuing a Christian evangelical agenda, as shown cryptically by the existence of a pun in the name of a single piece of free software. Really? I suggest you take this idea to the articles on Stallman himself, or on the GNU project, and see how far it flies. If it flies there, then it's okay by me here, otherwise it seems to be a fairly extreme stretch.
I too wish that other editors would weigh in on this issue, but they didn't last time and probably won't now, so we may just need to rely on logic and reason for now. Eleuther (talk) 23:08, 4 March 2018 (UTC)[reply]
Response to third opinion request:
It's a very simple question, and religious doctrine or personal belief has nothing to do with it. Either you have a source making that explicit connection or you do not; if you do not, then it's WP:OR. From what I'm seeing, you do not; the only statement your sources support is that "Bourne again shell" is a word play, or a pun (and not even a sarcastic pun), on "Bourne shell" and "born again" - an expression with roots in Christian theology that, bar the pun, means nothing whatsoever in this context. You can wikilink to "born again" ("a nod to the Bourne shell and the phrase 'born again'"), but that's it. François Robere (talk) 21:57, 5 March 2018 (UTC)[reply]
@François Robere: Could you kindly take another look, please? There were two sources that Eleuther removed[21] stating the connection between the term as used by Evangelical Christians and as a name for this shell.[1][2]
I saw both of them in one of the older revisions. They look like explanations of American vernacular to foreigners, not statements of intent by Stallman. François Robere (talk) 16:07, 6 March 2018 (UTC)[reply]
But isn't that the point, to explain that this was the connection for those who may not already know it? Stallman is confirming that he chose the phrase because there's a connection he had in mind between the term as used by Evangelican Christians and the name he chose for his shell. He's not describing "born again" as a "common" phrase randomly chosen because it sounded nice, he's saying it's a specific phrase with a specific meaning, which is all the article reported. Again, I'm baffled why you find this source insufficient simply because it explains the matter to non-English speakers. Msnicki (talk) 17:12, 6 March 2018 (UTC)[reply]
But there lies a slight, and important difference: their explanation of the phrase isn't necessarily Stallman's explanation of the phrase. From what I can see he simply used an idiom - a phrase which by popular use came to have a common meaning which is related to, but not the same as the original. For example, if instead of "born again" he had used the idiom "show the ropes" and called the program STRSH ("Starsh") - suggesting that it's a friendly and easy to learn program - does that mean that he had in mind 18th century rigging practices, and that we should we mention those in this context? Probably not - he probably just used an well-known idiom, with no intention of suggesting anything beyond what it's commonly understood to suggest. François Robere (talk) 15:56, 8 March 2018 (UTC)[reply]
But the point is, it wasn't called something random like "show the ropes". Its actual name is Bourne Again Shell and it's meaningful in its own right: Bash was intended as a completely free and open source version of the Bourne Shell owned by AT&T. This was a recreation, a re-incarnation, if you will, of that original Bourne shell and that's why the word play was significant and widely understood. Msnicki (talk) 16:37, 11 March 2018 (UTC)[reply]

Born again references

  1. ^ Rohaut, Sébastien (April 2015). LINUX: Preparación para la certificación LPIC-1 : Exámenes LPI 101 y LPI 102. Editions ENI. p. 170. ISBN 978-2-7460-9513-7. Retrieved May 27, 2017. El bash es un derivado de Bourne Shell. Bourne es el nombre del principal programm programador de este shell. La expresión "Bourne Again" es un guiño a los origenes del bash (Bourne) y un juengo de palabras en "I born again", lo qui significa "he nacido otra vez" o "reencarnado". [Bash is a derivative of Bourne Shell. Bourne is the name of the main programmer for this shell. The expression "Bourne Again" is a nod to the origins of bash (Bourne) and a pun on "born again", which means "I was born again" or "reincarnated".]
  2. ^ Stallman, Richard (1999). Il progetto GNU. Open Sources. Voci dalla rivoluzione Open Source. Apogee Publisher. p. 66. Retrieved May 27, 2017. "Bourne Again Shell" è un gioco di parole sul nome "Bourne Shell", che era la normale shell di Unix. NdT: "Bourne again" richiama l'expressione cristiana "born again", "rinato" (in Cristo). ["Bourne Again Shell" is a pun on the name "Bourne Shell", which was the normal Unix shell. NdT: "Bourne again" refers to the Christian expression "born again", "reborn" (in Christ).)]
  • Hi, Msnicki. After more research, which I probably should have done earlier, I can clarify the nature of your Italian language source a bit better here. For the record, it's from a translation into Italian of a book published by O'Reilly in 1999, titled Open Sources: Voices from the Open Source Revolution. This book is a collection of papers, the first of which is Stallman's well-known work The GNU Project, which he wrote specifically for the book, and which is widely available (see [22] for Stallman's online version). You're citing a footnote in this paper. The first sentence is Stallman's footnote. The second sentence was added by the translators (as clearly indicated by NdT: nota del traduttore). The first sentence, as in the English language original, only uses the phrase "Bourne again," leaving its interpretation to the reader's imagination. The term "born again" only occurs in the second sentence.
In other words, Stallman does not use the term "born again" himself at all here, much less does he ascribe a meaning to it. The term was only added by the translators. Thus your claim ([23]), when you added the citation, that the "source is Stallman himself explaining it in Italian," appears to be false, and your claim, at the beginning of this talk section, that the source is "one from Stallman himself explaining the connection to the Christian expression "born again"," is also plainly false. Eleuther (talk) 03:55, 12 March 2018 (UTC)[reply]
He is still the author and there's no reason to believe the translator was some sort of rogue agent, writing stuff Stallman wouldn't agree with. It's likely Stallman was asked to approve the translation. But even if Stallman was unaware of the added words, it's still a reliable, authoritative source from a reputable publisher. Msnicki (talk) 05:43, 12 March 2018 (UTC)[reply]
Okay, the publisher is reputable, but all the rest of that is pure speculation. You don't cite Stallman's original paper, because it doesn't contain the word you want (born). Instead, you cite an Italian translation, where the word appears in a translator's note, which you then attribute magically to Stallman. This seems to verge on editorial misconduct. Eleuther (talk) 05:32, 14 March 2018 (UTC)[reply]
Kindly WP:AGF, at least in what you write. I keep what I think of you to myself; you can do the same for me. There is also a second source explaining the connection to reincarnation, which I could also accept, as a better elaboration than "common". Are you arguing that you do not think there was a connection between the formal name, Bourne Again Shell, what it did, recreating the Bourne shell from scratch, and the notion of reincarnation captured in "born again" as the term is commonly understood? Stallman wasn't paying homage to Evangelicals; he was taking their term, the same way he was taking AT&T's definition of Bourne shell, which he also put in the name, to tell people instantly what this product was and what it did. I'm pretty sure he thought this was very clever (I do, too) and it had nothing to do with religion, just like it has nothing to do with religion for me. (I'm not religious, either.) Msnicki (talk) 13:50, 14 March 2018 (UTC)[reply]
Of course I think there's no such connection, in any meaningful sense. It's the simplest and obvious and most logical thing to think. Suppose the author of the encumbered shell had been named Smith, instead of Bourne. Stallman would still have needed to commission a replacement, but it would have been named something else, say smash. So now take Stallman's paper The GNU Project, on the project's history: change bash to smash everywhere, and change the footnote in question to say, "Smash stands for Smith alternative shell." The result: same GNU project, same paper, but no religious hook to hang elaborate fantasies on, about reincarnation and rebirth, etc. Of course, an anarchist could now come around and claim on the basis of the new name that GNU is all about smashing the system. That would be an equally weird fantasy. Eleuther (talk) 10:16, 16 March 2018 (UTC)[reply]
Okay, Wikipedia is not WP:TRUTH and consensus is not WP:UNANIMOUS. I concede it's unlikely you will change your opinion, so with support from the third opinion, you appear to have what little there is of a consensus for now. I'm surprised and disappointed there was so little discussion, and with your befuddling argument that it might have called it something else, which I'd have thought should have been my argument, that he didn't call it something else, he called it the Bourne Again Shell for a reason, that it was a clever wordplay on the notion of an existing AT&T proprietary shell being reincarnated in open source. This was considered obvious at the time. Msnicki (talk) 16:51, 17 March 2018 (UTC)[reply]
You seem to be befuddled by simple logic. I'm not sure how to answer further, so I will bow out for now. Eleuther (talk) 12:44, 18 March 2018 (UTC)[reply]

Logo official or FAN ART?

If the latter, why does Wikipedia have it? Is wikipedia a platform for assign logos to random things? — Preceding unsigned comment added by 81.182.52.188 (talk) 10:04, 16 July 2018 (UTC)[reply]

The image caption describes it as the "Official GNU Bash logo." If that's not good enough for you, a simple Google search on "official bash logo" turns up the site [24], which describes the creation of the logo in 2015. The search also turns up links to the logo in the bash project's official repository. Eleuther (talk) 10:27, 17 July 2018 (UTC)[reply]
I call BS. Where does that page say GNU/Free Software Foundation authorized it or at least the authors of Bash: Brian Fox and Chet Ramey? Just because a website advertises itself as something, that does not mean that's legit. The official page of Bash is at [25]. I don't see a friggin' logo there. That site you linked is just trying to use the logo to promote themselves (Prospect One). — Preceding unsigned comment added by 81.182.52.188 (talk) 00:55, 18 July 2018 (UTC)[reply]
A bit crabby this mornin', are we? Thanks for mentioning Chet Ramey, the current maintainer of bash. On the official bash page, which you linked to, the second paragraph says, "The maintainer also has a bash page." If you follow that link to Chet Ramey's bash page, there you will see the logo. So he, at least, seems to think the logo has some official status. You could also have followed the link "30,000 people voted for the best iteration" (on the bashlogo.com page that I mentioned earlier). This leads to an article on opensource.com, about the project to create the logo, and Ramey's role in it, and his sanctioning of it. Please see the github page official-bash-logo for more information if you need it. This all seems to me like open source working the way it should, rather than (as you seem to assume) everyone involved acting unethically and in bad faith. Cheers, Eleuther (talk) 18:02, 18 July 2018 (UTC)[reply]