You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The explanations for {} [1] are wrong or incomplete. From the lab [1], I get that {} are a form of OR.
From lab: "... folosim sintaxa {} pentru a defini o listă de cuvinte ... care pot fi folosite în înlocuire. Această sintaxă înlocuiește exact un cuvânt din lista oferită" + "Citim expresia {Downloads,Music}: în locul acestei expresii poate să existe cuvântul Downloads sau cuvântul Music."
In reality, {} represent expansion of terms. Ex: touch file{1,2,3,4,5}.txt expands to touch file1.txt file2.txt file3.txt file4.txt file5.txt. And ls {Downloads,Music} expands to ls Downloads Music.
See "Brace Expansion" from [2].
Please correct or improve the text that refers to {}.
The text was updated successfully, but these errors were encountered:
elena19m
changed the title
Lab: Îmbunătățirea lucrului în linia de comandă
Lab: Îmbunătățirea lucrului în linia de comandă - Information for {} is wrong or incomplete
Nov 16, 2020
The explanations for
{}
[1] are wrong or incomplete. From the lab [1], I get that{}
are a form of OR.From lab: "... folosim sintaxa {} pentru a defini o listă de cuvinte ... care pot fi folosite în înlocuire. Această sintaxă înlocuiește exact un cuvânt din lista oferită" + "Citim expresia
{Downloads,Music}
: în locul acestei expresii poate să existe cuvântul Downloads sau cuvântul Music."In reality,
{}
represent expansion of terms. Ex:touch file{1,2,3,4,5}.txt
expands totouch file1.txt file2.txt file3.txt file4.txt file5.txt
. Andls {Downloads,Music}
expands tols Downloads Music
.See "Brace Expansion" from [2].
Please correct or improve the text that refers to
{}
.[1] https://ocw.cs.pub.ro/courses/uso/laboratoare/laborator-05#sintaxa_speciala1
[2] https://linux.die.net/man/1/bash
The text was updated successfully, but these errors were encountered: