Lock in $30 Savings on PRO—Offer Ends Soon! ⏳
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
96
Reachability estimation in temporal networks
arashbm
1
56
Error and Attack Tolerance in Public Transport Networks: A Temporal Networks Approach
arashbm
2
45
Community detection in Multilayer Networks
arashbm
0
93
History of Subatomic Physics
arashbm
0
85
Nanowires
arashbm
0
130
Filesystem Permissions in Linux/Unix
arashbm
1
95
Using Linux/Unix Shell
arashbm
3
230
Getting That Piece of Software to Run on Your Linux Device
arashbm
1
92
Other Decks in Programming
See All in Programming
TypeScriptでライブラリとの依存を限定的にする方法
tutinoko
3
780
ローコードSaaSのUXを向上させるためのTypeScript
taro28
1
700
Ethereum_.pdf
nekomatu
0
480
Better Code Design in PHP
afilina
PRO
0
140
Cursorでアプリケーションの追加開発や保守をどこまでできるか試したら得るものが多かった話
drumnistnakano
0
150
React への依存を最小にするフロントエンド設計
takonda
21
7.6k
イベント駆動で成長して委員会
happymana
1
350
Figma Dev Modeで変わる!Flutterの開発体験
watanave
0
3.3k
React CompilerとFine Grained Reactivityと宣言的UIのこれから / The next chapter of declarative UI
ssssota
7
2.3k
DevTools extensions で 独自の DevTool を開発する | FlutterKaigi 2024
kokiyoshida
0
170
Gestaltung digitaler Lösungen – Produktions- oder Designprozess?
techstories
0
100
Missing parts when designing and implementing Android UI
ericksli
0
340
Featured
See All Featured
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
356
29k
Fontdeck: Realign not Redesign
paulrobertlloyd
82
5.3k
We Have a Design System, Now What?
morganepeng
50
7.2k
Agile that works and the tools we love
rasmusluckow
327
21k
Statistics for Hackers
jakevdp
796
220k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
48k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
365
24k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
It's Worth the Effort
3n
183
27k
Product Roadmaps are Hard
iamctodd
PRO
49
11k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
10 Git Anti Patterns You Should be Aware of
lemiorhan
656
59k
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]