Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Introduction to Linux/Unix cli
Search
Arash Badie Modiri
November 15, 2011
Programming
0
130
Introduction to Linux/Unix cli
Arash Badie Modiri
November 15, 2011
Tweet
Share
More Decks by Arash Badie Modiri
See All by Arash Badie Modiri
Directed Percolation in Temporal Networks (CCS 2021)
arashbm
0
180
Reachability estimation in temporal networks
arashbm
1
63
Error and Attack Tolerance in Public Transport Networks: A Temporal Networks Approach
arashbm
2
52
Community detection in Multilayer Networks
arashbm
0
96
History of Subatomic Physics
arashbm
0
98
Nanowires
arashbm
0
160
Filesystem Permissions in Linux/Unix
arashbm
1
99
Using Linux/Unix Shell
arashbm
3
230
Getting That Piece of Software to Run on Your Linux Device
arashbm
1
96
Other Decks in Programming
See All in Programming
Codex の「自走力」を高める
yorifuji
0
180
エラーログのマスキングの仕組みづくりに役立ったASTの話
kumoichi
0
110
社内規程RAGの精度を73.3% → 100%に改善した話
oharu121
13
7.5k
ふつうの Rubyist、ちいさなデバイス、大きな一年
bash0c7
0
110
Railsの気持ちを考えながらコントローラとビューを整頓する/tidying-rails-controllers-and-views-as-rails-think
moro
4
370
CSC307 Lecture 11
javiergs
PRO
0
590
Rails Girls Tokyo 18th GMO Pepabo Sponsor Talk
yutokyokutyo
0
190
Agent Skills Workshop - AIへの頼み方を仕組み化する
gotalab555
14
7.8k
The Ralph Wiggum Loop: First Principles of Autonomous Development
sembayui
0
3.7k
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
390
TROCCOで実現するkintone+BigQueryによるオペレーション改善
ssxota
0
130
Geminiの機能を調べ尽くしてみた
naruyoshimi
0
190
Featured
See All Featured
What’s in a name? Adding method to the madness
productmarketing
PRO
24
4k
<Decoding/> the Language of Devs - We Love SEO 2024
nikkihalliwell
1
150
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
3.7k
[RailsConf 2023] Rails as a piece of cake
palkan
59
6.3k
Tips & Tricks on How to Get Your First Job In Tech
honzajavorek
0
450
From π to Pie charts
rasagy
0
140
More Than Pixels: Becoming A User Experience Designer
marktimemedia
3
340
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
Java REST API Framework Comparison - PWX 2021
mraible
34
9.2k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.1k
Building a Modern Day E-commerce SEO Strategy
aleyda
45
8.8k
Music & Morning Musume
bryan
47
7.1k
Transcript
Command Line Interface An introduction to
Command Line Interface An introduction to
CLI ain't GUI
Working in a Directory me@puter: ~$ pwd /home/me me@puter: ~$
Working in a Directory ls [-a] [directory] me@puter: ~$ ls
. app config.ru features id_rsa.pub me@puter: ~$
Working in a Directory cd [directory] me@puter: ~$ pwd /home/me
me@puter: ~$ cd .. me@puter: /heme$ pwd /home me@puter: /home$ cd /etc/apache2 me@puter: /etc/apache2$ pwd /etc/apache2
Working in a Directory me@puter: ~$ cd .
Working With Files less [file-path]
Getting Help man [manpage you want] (Google is your friend)
Installing a software Is it a package? Install it via
package manager. Only source? Compile it.
It says README so read it! :)
Do more cp [1st file] [2nd file] mv [1st file]
[2nd file] rm [filepath] chmod [-R] [nnn] [filepath]