ls

How to sort output of "s3cmd ls"

Amazon "s3cmd ls" takes like this output: 2010-02-20 21:01 1458414588 s3://file1.tgz.00 2010-02-20 21:10 1458414527 s3://file1.tgz.01 2010-02-20 22:01 1458414588 s3://file2.tgz.00 2010-02-20 23:10 1458414527 s3://file2.tgz.01 2010-02-20 23:20 1458414588 s3://file2.tgz.02 How to select all files of archive, ending at 00 ... XX...

Listing the content of a tar file or a directory only down to some level

I wonder how to list the content of a tar file only down to some level? I understand tar tvf mytar.tar will list all files, but sometimes I would like to only see directories down to some level. Similarly, for the command ls, how do I control the level of subdirectories that will be displayed? By default, it will only show the direct ...

What size of folders show ls -la

Possible Duplicate: When running ls -l, why does the filesize on a directory not match the output of du? Hi. I'm interesting in information what show me output ls -la in linux. So, default size is 4K. But if there are a lot of files, maybe with zero size, such as PHP sessions =), the size != 4K. What showing me ls -la? And a...

What are your LS_COLORS?

After installing a full version of Cygwin, I open up the MinTTY shell and I like the green on black. However, when I do an 'ls', I get a dark blue for directories. It's not very readable. I found that the LS_COLORS environment variable controls the output of ls. Here is my current default: no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=...

How do I list one filename per output line in Linux?

I'm using ls -a command to get the file names in a directory, but the output is in a single line. Like this:. .. .bash_history .ssh updator_error_log.txt Is there a built-in alternative to get filenames, each on a new line, like this: . .. .bash_history .ssh updator_error_log.txt ...

What does the + mean in the ACL output of "ls -l"?

ls -l -rwxr-xr-x 1 root root 885 2010-07-08 13:55 /etc/backup-number-of-files* -rwxrwxr-x+ 1 levchuk Users 1067 2010-08-30 14:37 /etc/backup-running-time* Please notice the + on the 2nd line. ...

how to display only Permissions and file names using ls command

and how to list all files in a directory including full path, owner, group and permissions for each file ...

PHP Beginner: Is using the exec command standard practice?

I am just starting php. I am just curious if there is a better way to do this. This displays all of my scripts in the same folder as this script. I am not sure if it is standard to use the exec command. It does not seem very portable. <html> <head> <title>My PHP Practice Scripts</title> </head> <body> <center><h1>PHP Scrip...