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
170
Reachability estimation in temporal networks
arashbm
1
61
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
93
Nanowires
arashbm
0
150
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
10年もののAPIサーバーにおけるCI/CDの改善の奮闘
mbook
0
800
After go func(): Goroutines Through a Beginner’s Eye
97vaibhav
0
310
アメ車でサンノゼを走ってきたよ!
s_shimotori
0
210
開発生産性を上げるための生成AI活用術
starfish719
3
360
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
260
GitHub Actions × AWS OIDC連携の仕組みと経緯を理解する
ota1022
0
250
育てるアーキテクチャ:戦い抜くPythonマイクロサービスの設計と進化戦略
fujidomoe
1
170
私達はmodernize packageに夢を見るか feat. go/analysis, go/ast / Go Conference 2025
kaorumuta
2
510
CSC305 Lecture 06
javiergs
PRO
0
210
階層構造を表現するデータ構造とリファクタリング 〜1年で10倍成長したプロダクトの変化と課題〜
yuhisatoxxx
3
960
『毎日の移動』を支えるGoバックエンド内製開発
yutautsugi
2
220
Django Ninja による API 開発効率化とリプレースの実践
kashewnuts
0
1.2k
Featured
See All Featured
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
30
2.9k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.6k
We Have a Design System, Now What?
morganepeng
53
7.8k
Done Done
chrislema
185
16k
How to Think Like a Performance Engineer
csswizardry
27
2k
The Invisible Side of Design
smashingmag
301
51k
Building an army of robots
kneath
306
46k
GraphQLとの向き合い方2022年版
quramy
49
14k
Docker and Python
trallard
46
3.6k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.2k
Designing for Performance
lara
610
69k
Navigating Team Friction
lara
189
15k
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]