User Tools

Site Tools


linux:perintah-dasar

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
linux:perintah-dasar [2017/02/22 04:43] – [ls – Lists files & directories] kbadminlinux:perintah-dasar [2017/02/22 04:52] (current) – [tail] kbadmin
Line 31: Line 31:
 root     pts/   180.246.242.226  09:22    0.00s  0.01s  0.00s w root     pts/   180.246.242.226  09:22    0.00s  0.01s  0.00s w
 </code> </code>
 +===== touch - A command to create a file =====
 +Adalah perintah untuk membuat file 
 +<code>
 +[root@vnc script]# touch fileku.txt
 +[root@vnc script]# ls
 +cetak.sh  fileku.txt  variabel.sh  variabel2.sh
 +[root@vnc script]#
 +</code>
 +===== rm - remove file or folder =====
 +Menghapus file atau folder
 +<code>
 +[root@vnc script]# rm fileku.txt
 +rm: remove regular empty file `fileku.txt'? y
 +[root@vnc script]# ls
 +cetak.sh  variabel.sh  variabel2.sh
 +</code>
 +===== cp - copy file or folder =====
 +untuk mengcopy file atau folder
 +<code>
 +[root@vnc script]# cp cetak.sh cetak-baru.sh
 +[root@vnc script]# ls
 +cetak-baru.sh  cetak.sh  variabel.sh  variabel2.sh
 +</code>
 +===== mv - move file or folder =====
 +Untuk memindahkan/mengganti nama file atau folder
 +<code>
 +[root@vnc script]# mv cetak-baru.sh cetak-lama.sh
 +[root@vnc script]# ls
 +cetak-lama.sh  cetak.sh  variabel.sh  variabel2.sh
 +</code>
 +===== clear =====
 +Untuk membersihkan layar
 +
 +===== mkdir - create directory =====
 +Untuk membuat direktori baru
 +<code>
 +[root@vnc script]# mkdir direktoriku
 +[root@vnc script]# ls
 +cetak-lama.sh  cetak.sh  direktoriku  variabel.sh  variabel2.sh
 +</code>
 +===== cat =====
 +Untuk menampilkan semua isi file
 +<code>
 +[root@vnc script]# cat cetak.sh
 +#!/bin/bash
 +
 +echo "Assalamu'alaikum"
 +
 +[root@vnc script]#
 +</code>
 +===== tail =====
 +Untuk menampilkan isi file dari bawah atau terakhir
 +<code>
 +[root@vnc script]# tail cetak.sh
 +#!/bin/bash
 +
 +echo "Assalamu'alaikum"
 +</code>
 +
 +===== chmod - change file permission =====
 +Untuk merubah permission file
 +<code>
 +[root@vnc script]# chmod 755 cetak.sh
 +[root@vnc script]# ls -l
 +total 20
 +-rw-r--r-- 1 root root   39 Feb 22 09:45 cetak-lama.sh
 +-rwxr-xr-x 1 root root   39 Feb 22 09:01 cetak.sh
 +drwxr-xr-x 2 root root 4096 Feb 22 09:48 direktoriku
 +-rw-r--r-- 1 root root   41 Feb 22 09:26 variabel.sh
 +-rw-r--r-- 1 root root   43 Feb 22 09:30 variabel2.sh
 +</code>
 +
  
  

Layanan

Harga Domain .COM | Harga Domain .ID | Shared Hosting | Email Hosting | MySQL Hosting |
linux/perintah-dasar.1487756585.txt.gz · Last modified: 2017/02/22 04:43 by kbadmin

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki