Bash terminology

Started by
11 comments, last by polly 20 years, 3 months ago
Hi there, Im learning Linux and CLI (Bash) at the moment and I have a couple of questions on the actual spoken terminology that is used. For example I have heard the following symbol (phonetic exclamation mark) called "bang"; !, but I am unsure if this is correct or not. If so, what other spoken terminology exists for symbols such as *, $, <, >, and so on? This may seem an elementary question, but its not in any of the stuff I''ve read as yet, only the symbols are. Does the name of each of these characters depend upon the context in which its being used? i.e. if you''re writing a Perl script rather than a .sh file then they are called something else? Jon
Advertisement
Typically I use the following "phonetics" for symbols. Most are the same as anyone would use.

! bang (i''ve also heard "emphatic" )
# hash
$ dollar sign
< less than
> greater than
* star
# is also referenced as ''sharp'', not only for C# but I think also for the classic #! -> sha-bang (sp?), though I''m not 100% sure on this one.
http://mitglied.lycos.de/lousyphreak/
quote:Original post by LousyPhreak
# is also referenced as ''sharp'', not only for C# but I think also for the classic #! -> sha-bang (sp?), though I''m not 100% sure on this one.

I always thought sharp for # came from the sheet music term.
http://www.musicmasterworks.com/ReadingSheetMusic.htm

Also | (above \) is called pipe
~ is tilde (though I call it squiggle)

Tadd
- WarbleWare
Tadd- WarbleWare
Check the entry on ASCII in the Jargon File.

[edited by - Snaily on January 8, 2004 11:45:38 AM]
¨@_
hash-bang-slash-bin-slash-bash == #!/bin/bash

Have never heard anyone refer to #! as sha-bang or the # as "sharp". Not in a *nix context, at least.

'' tick
` back tick - I''ve heard this symbol referred to as something else, but can''t remember it now. Many years ago.
^ carrot/caret
quote:Original post by pwd
` back tick - I''ve heard this symbol referred to as something else, but can''t remember it now. Many years ago.

Backquote?
Thanks for the info and links guys- I''ll now be able to express what I mean to people at work with out sounding like a total div!
Jon
the Sha-Bang
http://mitglied.lycos.de/lousyphreak/
quote:Original post by sbennett
quote:Original post by pwd
` back tick - I''ve heard this symbol referred to as something else, but can''t remember it now. Many years ago.

Backquote?


It was stranger than that. Some random slang from the AT&T days.

This topic is closed to new replies.

Advertisement