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
150
Reachability estimation in temporal networks
arashbm
1
57
Error and Attack Tolerance in Public Transport Networks: A Temporal Networks Approach
arashbm
2
47
Community detection in Multilayer Networks
arashbm
0
94
History of Subatomic Physics
arashbm
0
91
Nanowires
arashbm
0
140
Filesystem Permissions in Linux/Unix
arashbm
1
97
Using Linux/Unix Shell
arashbm
3
230
Getting That Piece of Software to Run on Your Linux Device
arashbm
1
94
Other Decks in Programming
See All in Programming
つよそうにふるまい、つよい成果を出すのなら、つよいのかもしれない
irof
1
300
LINEヤフー データグループ紹介
lycorp_recruit_jp
0
880
来たるべき 8.0 に備えて React 19 新機能と React Router 固有機能の取捨選択とすり合わせを考える
oukayuka
2
850
PostgreSQLのRow Level SecurityをPHPのORMで扱う Eloquent vs Doctrine #phpcon #track2
77web
2
300
生成AIで日々のエラー調査を進めたい
yuyaabo
0
640
Elixir で IoT 開発、 Nerves なら簡単にできる!?
pojiro
1
150
データの民主化を支える、透明性のあるデータ利活用への挑戦 2025-06-25 Database Engineering Meetup#7
y_ken
0
320
関数型まつり2025登壇資料「関数プログラミングと再帰」
taisontsukada
2
850
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
220
WindowInsetsだってテストしたい
ryunen344
1
190
設計やレビューに悩んでいるPHPerに贈る、クリーンなオブジェクト設計の指針たち
panda_program
6
1.3k
イベントストーミング図からコードへの変換手順 / Procedure for Converting Event Storming Diagrams to Code
nrslib
1
340
Featured
See All Featured
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
Stop Working from a Prison Cell
hatefulcrawdad
270
20k
How to Think Like a Performance Engineer
csswizardry
24
1.7k
A Tale of Four Properties
chriscoyier
160
23k
Why You Should Never Use an ORM
jnunemaker
PRO
56
9.4k
GraphQLの誤解/rethinking-graphql
sonatard
71
11k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
181
53k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.4k
Designing for humans not robots
tammielis
253
25k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
What's in a price? How to price your products and services
michaelherold
246
12k
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]