You are on page 1of 7

LEMBAR KERJA PRAKTIKUM

SISTEM OPERASI 2
COMMAND LINE INTERFACE “searching”

Nama Perimsa Tuahmamana Karo-karo


NIM 1805103017
Kelas MI 5D
Hari JUMAT
Tanggal 11 DESEMBER 2020
Program Studi MANAJEMEN INFORMATIKA

A. Tujuan
1. Mengenal perintah-perintah CLI pada UNIX/LINUX
2. Menggunakan perintah-perintah CLI untuk berinteraksi dengan komputer

B. Tata laksana
1. Ketikan perintah sesuai dengan panduan yang diberikan
2. Print screen hasil yang ada serta berikan penjelasannya
3. Buat kesimpulan dari kegiatan yang telah dilakukan

C. Teori pendukung

2.5 Searching the contents of a file

Simple searching using less

Using less, you can search though a text file for a keyword
(pattern). For example, to search through science.txt for the word
'science', type

% less science.txt

then, still in less (i.e. don't press [q] to quit), type a forward slash
[/] followed by the word to search

/science
As you can see, less finds and highlights the keyword. Type [n]
to search for the next occurrence of the word.

grep (don't ask why it is called grep)

grep is one of many standard UNIX utilities. It searches files for


specified words or patterns. First clear the screen, then type

% grep science science.txt

As you can see, grep has printed out each line containg the word
science.

Or has it????

Try typing

% grep Science science.txt

The grep command is case sensitive; it distinguishes between


Science and science.

To ignore upper/lower case distinctions, use the -i option, i.e. type

% grep -i science science.txt

To search for a phrase or pattern, you must enclose it in single


quotes (the apostrophe symbol). For example to search for spinning
top, type

% grep -i 'spinning top' science.txt

Some of the other options of grep are:

-v display those lines that do NOT match


-n precede each maching line with the line number
-c print only the total count of matched lines

Try some of them and see the different results. Don't forget, you
can use more than one option at a time, for example, the number of
lines without the words science or Science is

% grep -ivc science science.txt

wc (word count)
A handy little utility is the wc command, short for word count. To do
a word count on science.txt, type

% wc -w science.txt

To find out how many lines the file has, type

% wc -l science.txt

D. Kegiatan
1 Perintah:
a. ls [spasi] –l [enter]
b. clear [enter]
c. less [spasi] hello.c [enter][keterangan: lalu tunggu hingga muncul isinya.]
d. [backspace] /c [enter][keterangan: perintah untuk mencari huruf “c” dalam
file hello.c]
e. [backspace] /include [enter][keterangan: perintah untuk mencari kata
“include” dalam file hello.c]
f. [backspace] q [keterangan: perintah untuk keluar]
Hasil:
a. ls -l

b. clear
c. less hello.c

d. /c

e. q

Pembahasan:
a. ls -l untuk menampilkan seluruh isi halaman yang aktif
b. clear untuk menghapus seluruh isi halaman yang aktif
c. less hello.c untuk membuat perintah hello world
d. /c untuk mencari kata c
e. Q untuk kembali ke awal
Kesimpulan:
Perintah less hello.c ini dapat memudahkan mencari kata hello world tanpa mengetik
koding nya yang panjang.
2 Perintah:
a. clear [enter]
b. grep [spasi] c [spasi] hello.c [enter][keterangan: perintah lain mencari huruf
“c” di dalam file hello.c]
c. grep [spasi] include [spasi] hello.c [enter][keterangan: perintah lain mencari
kata “include” di dalam file hello.c]
d. grep [spasi] Include [spasi] hello.c [enter][keterangan: perintah lain mencari
kata “include” di dalam file hello.c]
e. grep [spasi] ‘include [spasi] <’ [spasi] hello.c [enter][keterangan: perintah
lain mencari kombinasi kata “include <” di dalam file hello.c]
Hasil:
a. clear

b. grep c hello.c

c. grep include hello.c

d. grep Include hello.c

e. grep ‘inlclude <’ hello.c

Pembahasan:
a. clear untuk menghapus seluruh isi halaman yang aktif
b. grep c hello.c untuk menampilkan include dengan perintah c
c. grep include hello.c untuk menampilkan include dengan perintah include
d. grep Include hello.c tidak menampilkan apapun karena pada huruf ada kesalahan
e. grep ‘include <’ hello.c untuk menampilkan include dengan perintah <

Kesimpulan:
Untuk menampilkan include dapat dilakukan banyak cara

3 Perintah:
a. clear [enter]
b. wc [spasi] –w [spasi] hello.c [enter]
c. wc [spasi] –l [spasi] hello.c [enter]
Hasil:
a. clear

b. wc -w hello.c

c. wc –l hello.c

Pembahasan:
a. Clear untuk menghapus seluruh isi halaman yang aktif
b. Wc -w hello.c untuk mengatur ukuran tulisan menjadi besar
c. Wc -l hello.c untuk mengatur ukuran tulisan menjadi kecil
Kesimpulan:
Jika kita ingin memperbesar dan memperkecil tulisan dapat menggunakan perintah
wc (word count)

You might also like