Intro Lab Flashcards

1
Q

temizle

A

cls

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

tarih

A

date

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

seri numara

A

vol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

versiyon

A

ver

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

switchlerle birlikte dosyaları düzenler

A

attrib

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

kıyaslar

A

comp

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

kopyalama çeşitleri

A

copy dosyayı kopyalar
xcopy dosyayı içindekilerle birlikte koyalar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

yeniden adlandırma+kullanımı

A

ren m.txt t.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

konumu değiştirmek için

A

cd
cd..

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

dosya detay

A

dir
-dosya, klasör listeler
-son değişiklerin tarihi
-boyutlar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

yeni klasör oluşturma

A

md(mkdir)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

silme

A

rd(rmdir)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

yapıyı gösterme

A

tree

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

echo

A

yazılanları komut satırına çıktı alır

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

başlık değiştirme

A

title

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

batch toplama yaptırma

A

@echo off
set /a result=%1+%2
echo Result : %1 + %2 = %result%

17
Q

batch büyüklük durumu kontrolü

A

@echo off
if %1 gtr %2 (
echo First is Greater
) else if %2 gtr %1 (
echo Second is Greater
) else (
Equal
)

18
Q

IP configuration ve Network userı bir text dosyasına at

A

@echo off
ipconfig /all > network.txt
net user > network.txt

19
Q

bir dosyanın içeriklerini bir soyaya yazmak

A

@echo off
dir /b > contents.txt

20
Q

hello world

A

@echo off
echo “Hello World!”
pause

21
Q

linux text doyası açma

A

emacs text1.txt
Enter text
ctrl+x ctrl+c
press y

22
Q

tarih gösterme ve yardım sayfası

A

date
man date

23
Q

klasör oluştur

A

$ mkdir folder1
$ cd folder1
folder1$ mkdir subfolder12
folder1$ cd subfolder12
folder1/subfolder12$

24
Q

önceki komutları göster

A

folder1$ history

25
Q

show running process

A

folder1$ ps