SlideShare a Scribd company logo
1 of 14
+
Unix study class May,16
Ryota
+
Windows and Mac
Graphical User Interface
Application is your solution.
Guaranteed quality.
You must pay to use them.
Made by corporations.
+
Unix and Unix-like OS(Linux)
Terminal.
Your program is your solution. bash
Highly flexible.
Free.
Made by communities.
+
But I can’t code a program myself…
I have no basis of math, algorithm or computer science and...
Fear not, for the communities with you.
Unix has
• a lot of Utilities
• a lot of Libraries
• a lot of web sites where professionals answer for you.
You don’t (always) need to code everything by yourself because
How do we use Unix utilities?
+
Shell allows you to communicate
with the OS
OS
Every OS has its shell.
Windows -> explorer.exe
Mac -> Finder
Unix -> bash
bash receives your command and execute it.
bash is programmable.
bash includes many utilities.
You almost always find bash on any Unix system.
+
The first command: echo
$ echo "hello world"
hello world
What is it actually doing?
Read the manual!
“It writes arguments to the standard output.”
What is standard output?
It’s the key to combine Unix utilities.
$ man echo
+
The second command: tr
$ echo "hello world" | tr "o" "e"
helle werld
“o” has been substituted for “e”.
In other words, translating.
manual says..
“tr copies the standard input to the standard
output with sub-stitution”
+
hello world
⬇️
helle werld
Pipe connects the commands.
echo “hello world” |tr “o” “e”
hello worldstdout stdin
stdout
pipe
+
Training
2. echo “hello world” | tr “o” “e” | tr “h” “H” | tr “w” “W”
1. echo “spam” | tr “s” “z”
3. echo “tomato” | tr –d “o”
4. echo "hello world" | tr " " "n”
hint: n is a escaped character for newline
5. echo “hello world” | tr “lo” “ol”
+
More commands: cat
$ cat file_a
bacon
spam
pizza
$ cat file_a file_b
bacon
spam
pizza
tomato
potato
lettuce
$ cat file_b
tomato
potato
lettuce
concatenate and print files.
There is files named file_a and file_b.
+
More commands: sort
$ sort file_a file_b
bacon
lettuce
pizza
potato
spam
tomato
Write sorted concatenation of files to standard output.
sort can read from standard input.
cat file_a file_b | sort
This command works same.
Alphabetically
sorted
+
More commands: cut
$ cat ages
ryota sugimoto 29
takahide hayano 35
itsuro inoue 58
hirofumi nakaoka 34
waleed omer 35
shiro yamada 48
kazuyoshi hosomichi 36
$ cut -f 3 ages
29
35
55
34
35
48
36
cut out selected portions of each line of a file.
All values in this table are fiction.
+
More commands: uniq
$ cat file_c
a
b
b
c
a
d
d
d
$ uniq file_c
a
b
c
a
d
report or filter out repeated lines in a file.
+
Training
1. cat file_a | tr "a" "A" | cat - file_b
2. Remove all duplicating lines from file_c.
3. Sort ages file by their family name.
4. Count the number of each ages from ages file.
Hint: Use –c option of uniq command.

More Related Content

Viewers also liked

Tugasan pembangunan blog
Tugasan pembangunan blogTugasan pembangunan blog
Tugasan pembangunan blogSherline Kelin
 
Spanish online tools workshop version full time expanded 169 ene_2014
Spanish online tools workshop version full time expanded 169 ene_2014Spanish online tools workshop version full time expanded 169 ene_2014
Spanish online tools workshop version full time expanded 169 ene_2014albertodelaviuda
 
Presentation1
Presentation1Presentation1
Presentation1b3bbig
 
Il Contenzioso nel Franchising: da dove nasce, come prevenirlo, come risolverlo
Il Contenzioso nel Franchising: da dove nasce, come prevenirlo, come risolverloIl Contenzioso nel Franchising: da dove nasce, come prevenirlo, come risolverlo
Il Contenzioso nel Franchising: da dove nasce, come prevenirlo, come risolverloStudio Legale Pandolfini
 
Profili Legali dell'Organizzazione di Eventi ECM:Luci e Ombre - Studio Legale...
Profili Legali dell'Organizzazione di Eventi ECM:Luci e Ombre - Studio Legale...Profili Legali dell'Organizzazione di Eventi ECM:Luci e Ombre - Studio Legale...
Profili Legali dell'Organizzazione di Eventi ECM:Luci e Ombre - Studio Legale...Studio Legale Pandolfini
 

Viewers also liked (6)

Tugasan pembangunan blog
Tugasan pembangunan blogTugasan pembangunan blog
Tugasan pembangunan blog
 
Spanish online tools workshop version full time expanded 169 ene_2014
Spanish online tools workshop version full time expanded 169 ene_2014Spanish online tools workshop version full time expanded 169 ene_2014
Spanish online tools workshop version full time expanded 169 ene_2014
 
Presentation1
Presentation1Presentation1
Presentation1
 
Unix class 5_23
Unix class 5_23Unix class 5_23
Unix class 5_23
 
Il Contenzioso nel Franchising: da dove nasce, come prevenirlo, come risolverlo
Il Contenzioso nel Franchising: da dove nasce, come prevenirlo, come risolverloIl Contenzioso nel Franchising: da dove nasce, come prevenirlo, come risolverlo
Il Contenzioso nel Franchising: da dove nasce, come prevenirlo, come risolverlo
 
Profili Legali dell'Organizzazione di Eventi ECM:Luci e Ombre - Studio Legale...
Profili Legali dell'Organizzazione di Eventi ECM:Luci e Ombre - Studio Legale...Profili Legali dell'Organizzazione di Eventi ECM:Luci e Ombre - Studio Legale...
Profili Legali dell'Organizzazione di Eventi ECM:Luci e Ombre - Studio Legale...
 

Similar to Unix study class_01

Unix OS & Commands
Unix OS & CommandsUnix OS & Commands
Unix OS & CommandsMohit Belwal
 
Class 1: Welcome to programming
Class 1: Welcome to programmingClass 1: Welcome to programming
Class 1: Welcome to programmingMarc Gouw
 
Python Seminar PPT
Python Seminar PPTPython Seminar PPT
Python Seminar PPTShivam Gupta
 
Unleash your inner console cowboy
Unleash your inner console cowboyUnleash your inner console cowboy
Unleash your inner console cowboyKenneth Geisshirt
 
python-160403194316.pdf
python-160403194316.pdfpython-160403194316.pdf
python-160403194316.pdfgmadhu8
 
Learn Python 3 for absolute beginners
Learn Python 3 for absolute beginnersLearn Python 3 for absolute beginners
Learn Python 3 for absolute beginnersKingsleyAmankwa
 
Python in 30 minutes!
Python in 30 minutes!Python in 30 minutes!
Python in 30 minutes!Fariz Darari
 
Unleash your inner console cowboy
Unleash your inner console cowboyUnleash your inner console cowboy
Unleash your inner console cowboyKenneth Geisshirt
 
2016 bioinformatics i_python_part_2_strings_wim_vancriekinge
2016 bioinformatics i_python_part_2_strings_wim_vancriekinge2016 bioinformatics i_python_part_2_strings_wim_vancriekinge
2016 bioinformatics i_python_part_2_strings_wim_vancriekingeProf. Wim Van Criekinge
 
2015 bioinformatics python_strings_wim_vancriekinge
2015 bioinformatics python_strings_wim_vancriekinge2015 bioinformatics python_strings_wim_vancriekinge
2015 bioinformatics python_strings_wim_vancriekingeProf. Wim Van Criekinge
 
Code tacoma command_line
Code tacoma command_lineCode tacoma command_line
Code tacoma command_lineAndrea Urban
 
Lecture1_cis4930.pdf
Lecture1_cis4930.pdfLecture1_cis4930.pdf
Lecture1_cis4930.pdfzertash1
 
Unleash your inner console cowboy
Unleash your inner console cowboyUnleash your inner console cowboy
Unleash your inner console cowboyKenneth Geisshirt
 
Introduction to Python 01-08-2023.pon by everyone else. . Hence, they must be...
Introduction to Python 01-08-2023.pon by everyone else. . Hence, they must be...Introduction to Python 01-08-2023.pon by everyone else. . Hence, they must be...
Introduction to Python 01-08-2023.pon by everyone else. . Hence, they must be...DRVaibhavmeshram1
 
python presntation 2.pptx
python presntation 2.pptxpython presntation 2.pptx
python presntation 2.pptxArpittripathi45
 

Similar to Unix study class_01 (20)

Unix OS & Commands
Unix OS & CommandsUnix OS & Commands
Unix OS & Commands
 
Class 1: Welcome to programming
Class 1: Welcome to programmingClass 1: Welcome to programming
Class 1: Welcome to programming
 
python into.pptx
python into.pptxpython into.pptx
python into.pptx
 
Python
PythonPython
Python
 
Python Seminar PPT
Python Seminar PPTPython Seminar PPT
Python Seminar PPT
 
Unleash your inner console cowboy
Unleash your inner console cowboyUnleash your inner console cowboy
Unleash your inner console cowboy
 
python-160403194316.pdf
python-160403194316.pdfpython-160403194316.pdf
python-160403194316.pdf
 
Learn Python 3 for absolute beginners
Learn Python 3 for absolute beginnersLearn Python 3 for absolute beginners
Learn Python 3 for absolute beginners
 
Python in 30 minutes!
Python in 30 minutes!Python in 30 minutes!
Python in 30 minutes!
 
Unleash your inner console cowboy
Unleash your inner console cowboyUnleash your inner console cowboy
Unleash your inner console cowboy
 
Basic 50 linus command
Basic 50 linus commandBasic 50 linus command
Basic 50 linus command
 
2016 bioinformatics i_python_part_2_strings_wim_vancriekinge
2016 bioinformatics i_python_part_2_strings_wim_vancriekinge2016 bioinformatics i_python_part_2_strings_wim_vancriekinge
2016 bioinformatics i_python_part_2_strings_wim_vancriekinge
 
2015 bioinformatics python_strings_wim_vancriekinge
2015 bioinformatics python_strings_wim_vancriekinge2015 bioinformatics python_strings_wim_vancriekinge
2015 bioinformatics python_strings_wim_vancriekinge
 
A basic unix overview(2)
A basic unix overview(2)A basic unix overview(2)
A basic unix overview(2)
 
Code tacoma command_line
Code tacoma command_lineCode tacoma command_line
Code tacoma command_line
 
Lecture1_cis4930.pdf
Lecture1_cis4930.pdfLecture1_cis4930.pdf
Lecture1_cis4930.pdf
 
Linux Basics.pptx
Linux Basics.pptxLinux Basics.pptx
Linux Basics.pptx
 
Unleash your inner console cowboy
Unleash your inner console cowboyUnleash your inner console cowboy
Unleash your inner console cowboy
 
Introduction to Python 01-08-2023.pon by everyone else. . Hence, they must be...
Introduction to Python 01-08-2023.pon by everyone else. . Hence, they must be...Introduction to Python 01-08-2023.pon by everyone else. . Hence, they must be...
Introduction to Python 01-08-2023.pon by everyone else. . Hence, they must be...
 
python presntation 2.pptx
python presntation 2.pptxpython presntation 2.pptx
python presntation 2.pptx
 

Recently uploaded

Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 

Recently uploaded (20)

Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 

Unix study class_01

  • 1. + Unix study class May,16 Ryota
  • 2. + Windows and Mac Graphical User Interface Application is your solution. Guaranteed quality. You must pay to use them. Made by corporations.
  • 3. + Unix and Unix-like OS(Linux) Terminal. Your program is your solution. bash Highly flexible. Free. Made by communities.
  • 4. + But I can’t code a program myself… I have no basis of math, algorithm or computer science and... Fear not, for the communities with you. Unix has • a lot of Utilities • a lot of Libraries • a lot of web sites where professionals answer for you. You don’t (always) need to code everything by yourself because How do we use Unix utilities?
  • 5. + Shell allows you to communicate with the OS OS Every OS has its shell. Windows -> explorer.exe Mac -> Finder Unix -> bash bash receives your command and execute it. bash is programmable. bash includes many utilities. You almost always find bash on any Unix system.
  • 6. + The first command: echo $ echo "hello world" hello world What is it actually doing? Read the manual! “It writes arguments to the standard output.” What is standard output? It’s the key to combine Unix utilities. $ man echo
  • 7. + The second command: tr $ echo "hello world" | tr "o" "e" helle werld “o” has been substituted for “e”. In other words, translating. manual says.. “tr copies the standard input to the standard output with sub-stitution”
  • 8. + hello world ⬇️ helle werld Pipe connects the commands. echo “hello world” |tr “o” “e” hello worldstdout stdin stdout pipe
  • 9. + Training 2. echo “hello world” | tr “o” “e” | tr “h” “H” | tr “w” “W” 1. echo “spam” | tr “s” “z” 3. echo “tomato” | tr –d “o” 4. echo "hello world" | tr " " "n” hint: n is a escaped character for newline 5. echo “hello world” | tr “lo” “ol”
  • 10. + More commands: cat $ cat file_a bacon spam pizza $ cat file_a file_b bacon spam pizza tomato potato lettuce $ cat file_b tomato potato lettuce concatenate and print files. There is files named file_a and file_b.
  • 11. + More commands: sort $ sort file_a file_b bacon lettuce pizza potato spam tomato Write sorted concatenation of files to standard output. sort can read from standard input. cat file_a file_b | sort This command works same. Alphabetically sorted
  • 12. + More commands: cut $ cat ages ryota sugimoto 29 takahide hayano 35 itsuro inoue 58 hirofumi nakaoka 34 waleed omer 35 shiro yamada 48 kazuyoshi hosomichi 36 $ cut -f 3 ages 29 35 55 34 35 48 36 cut out selected portions of each line of a file. All values in this table are fiction.
  • 13. + More commands: uniq $ cat file_c a b b c a d d d $ uniq file_c a b c a d report or filter out repeated lines in a file.
  • 14. + Training 1. cat file_a | tr "a" "A" | cat - file_b 2. Remove all duplicating lines from file_c. 3. Sort ages file by their family name. 4. Count the number of each ages from ages file. Hint: Use –c option of uniq command.