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
120
Reachability estimation in temporal networks
arashbm
1
57
Error and Attack Tolerance in Public Transport Networks: A Temporal Networks Approach
arashbm
2
46
Community detection in Multilayer Networks
arashbm
0
93
History of Subatomic Physics
arashbm
0
88
Nanowires
arashbm
0
140
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
93
Other Decks in Programming
See All in Programming
Rails アプリ地図考 Flush Cut
makicamel
1
110
sappoRo.R #12 初心者セッション
kosugitti
0
230
AIの力でお手軽Chrome拡張機能作り
taiseiue
0
170
TokyoR116_BeginnersSession1_環境構築
kotatyamtema
0
110
2,500万ユーザーを支えるSREチームの6年間のスクラムのカイゼン
honmarkhunt
6
5.1k
Amazon ECS とマイクロサービスから考えるシステム構成
hiyanger
2
490
ISUCON14公式反省会LT: 社内ISUCONの話
astj
PRO
0
180
GitHub Actions × RAGでコードレビューの検証の結果
sho_000
0
240
How mixi2 Uses TiDB for SNS Scalability and Performance
kanmo
29
11k
法律の脱レガシーに学ぶフロントエンド刷新
oguemon
5
730
自分ひとりから始められる生産性向上の取り組み #でぃーぷらすオオサカ
irof
8
2.6k
CI改善もDatadogとともに
taumu
0
110
Featured
See All Featured
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
132
33k
The World Runs on Bad Software
bkeepers
PRO
67
11k
Building Flexible Design Systems
yeseniaperezcruz
328
38k
A Tale of Four Properties
chriscoyier
158
23k
Designing Experiences People Love
moore
139
23k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
366
25k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
12
950
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
The MySQL Ecosystem @ GitHub 2015
samlambert
250
12k
Product Roadmaps are Hard
iamctodd
PRO
50
11k
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]