User Tools

Site Tools


ubuntu:bash:quotes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

ubuntu:bash:quotes [2019/11/29 10:52] – created peterubuntu:bash:quotes [2019/12/07 01:42] (current) – removed peter
Line 1: Line 1:
-====== Ubuntu - Bash - Quotes ====== 
- 
-There are 3 types of quotes.  Each of the quotes bring different meaning and usage. 
- 
-<code> 
-' a.k.a. single quotes - Everything wrapped in this quote won't be changed (Strong quotes) 
- 
-" a.k.a. double quotes - Quotes that doesn't expand meta-characters like "*" or "?," but does expand variables and does command substitution (Weaker quotes) 
- 
-` a.k.a. back quotes - To execute command 
-</code> 
- 
-Examples of quotes usage (top lines are commands and the output are displayed below the commands): 
- 
----- 
- 
-Example of using back quotes within single quotes.  Nothing is changed. 
- 
-<code bash> 
-echo 'Today is `date`' 
- 
-Today is `date` 
-</code> 
- 
----- 
- 
-Example of using back quotes within double quotes.  The `date` command will be executed: 
- 
-<code bash> 
-echo "Today is `date`" 
- 
-Today is Mon May 26 09:42:50 MYT 2008 
-</code> 
  
ubuntu/bash/quotes.1575024751.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki