Skip to main content

Linux ls Command

 Linux ls Command


Youtube Video: Linux ls command


Description:


ls lists the file that is in that directory along with file size, owner, and modification. 


Syntax:

ls [option] [file/location]


Help / Manual: You can input “man” in front of the ls command to get help. You can also type “ ls –help “ to get the short version of the manual.

Options:

These are the options that you can use with the “ ls “ command to add additional features to your search.


You can always check the reference below for more information on the “ ls “ command. Learning the basics of “ ls “ will get you started to list the files in that directory.




References: 

https://www.computerhope.com/unix/uls.htm

https://www.linuxdoc.org/LDP/LG/issue48/fischer.html

https://www.geeksforgeeks.org/ls-command-in-linux/


Comments

Popular posts from this blog

Nmap Scan

  Nmap scan Youtube If you missed the first part of setting up the virtual machines and ping, do this part first before attempting to scan the devices on the network. https://toukeevang.blogspot.com/2023/10/3-vm-ping-connection-in-this-project-we.html We first going to start with an ARP scan to get the device's IP address. On your Kali virtual machine, open the terminal and type the following command. > nmap -PR -sn 10.0.2.0/24 nmap = is the tool we are using followed by some options within the tool. -PR = P is for ping, R is for randomize  -sn = ping scan no port x.x.x.x = your target IP address This next scan is to test websites and get the known IP address for the website. For this scan, you need to use the escalated privilege “ sudo “.  > sudo nmap -PE -sn scanme.nmap.org sudo = escalated privilege nmap = tool use -PE = sends ICMP packet only to get responses back -sn = ping scan no ports Scanme.nmap.org = target We are going to copy the IP addresses of the virt...