Reputation: 111
Below is what i get when i run ls -alF in the ftp directory:-
-rw-r--r-- 1 ssrftp ssssftp 3135 May 16 17:00 WAQ12.txt
Can someone explain me what are the different parameters ?
like -rw-r--r-- is permission what is 1 =? ssrftp =? ssssftp =? etc
Upvotes: 2
Views: 1580
Reputation: 1066
The -a
option will show all hidden files and directories (Those who start with ."
The -l
options shows the permissions, owner, group and more information
Finally the -F
classify the results in files and folders. Adding a "/" at the end of the row for each folder. In case the file is a binary it will put a different character. It's a parameter to make things more visual when you have a lot of files and directories with different extensions.
etc..
You can use man ls
in order to know more parameters of ls
Upvotes: 5