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
Elixir で IoT 開発、 Nerves なら簡単にできる!?
pojiro
1
110
Passkeys for Java Developers
ynojima
2
830
CSC307 Lecture 17
javiergs
PRO
0
110
OpenNext + Hono on Cloudflare でイマドキWeb開発スタックを実現する
rokuosan
0
120
事業戦略を理解してソフトウェアを設計する
masuda220
PRO
21
5.8k
コードに語らせよう――自己ドキュメント化が内包する楽しさについて / Let the Code Speak
nrslib
6
1.4k
レガシーシステムの機能調査・開発におけるAI利活用
takuya_ohtonari
0
570
コード書くの好きな人向けAIコーディング活用tips #orestudy
77web
3
280
F#で自在につくる静的ブログサイト - 関数型まつり2025
pizzacat83
0
280
Effect の双対、Coeffect
yukikurage
4
1.3k
GoのWebAssembly活用パターン紹介
syumai
3
9.6k
データベースコネクションプール(DBCP)の変遷と理解
fujikawa8
1
240
Featured
See All Featured
Java REST API Framework Comparison - PWX 2021
mraible
31
8.6k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.9k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Producing Creativity
orderedlist
PRO
346
40k
Bash Introduction
62gerente
614
210k
Designing Experiences People Love
moore
142
24k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
Thoughts on Productivity
jonyablonski
69
4.7k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
5.8k
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]