1
vote
6answers
110 views
ls command: how can I get a recursive full-path listing, one line per file?
How can I get ls to spit out a flat list of recursive one-per-line paths?
For example, I just want a flat listing of files with their full paths:
/home/dreftymac/.
/home/dreftyma …
0
votes
4answers
44 views
Find missing numbers in continuous filenames (advanced ls & find)
Let's say I have a script that generates incrementing folder names over time (100, 101, 102, 103, 104, etc...). These folders are synced between machines and there is a chance of c …
0
votes
0answers
58 views
ls -la symbolics… what does that last symbol mean? [closed]
when I type ls -la I get this familiar output...
drwxr-xr-x+ 38 kent staff 1292 Nov 6 11:09 .
drwxr-xr-x 5 root admin 170 Aug 14 14:11 ..
-rw-r--r--@ 1 kent …
0
votes
0answers
68 views
what does tail + number does? What about head [closed]
I just called this command ls -l | tail +3. Firstly, ls -s, produces 3 lines, adding piping strips first line and then prints each file names on a separate line. How does it do th …
5
votes
12answers
447 views
Quick ls command
I've got to get a directory listing that contains about 2 million files, but when I do an "ls" command on it nothing comes back. I've waited 3 hours. I've tried "ls | tee directory …
0
votes
2answers
90 views
Using grep and ls in ftp client?
How could I use grep and ls in ftp client...
I mean if I want to find some specific file I could use,
ls -l | grep pattern
thanks.
jcyang.
0
votes
0answers
43 views
ls on a dotfile [closed]
ls on a dotfile
My directory contains:
$ ls -A
.dotfile20091021 file20091020 file20091021
I want to list ALL files containing 20091021 in their name.
If I run:
$ …
0
votes
7answers
151 views
BASH: Find highest numbered filename in a directory where names start with digits (ls, sed)
I have a directory with files that look like this:
001_something.php 002_something_else.php
004_xyz.php 005_do_good_to_others.php
I ultimately want to create a new, empt …
6
votes
5answers
3k views
List files recursively in linux with path relative to the current directory
This is similar to this question, but I want to include the path relative to the current directory in unix. If can do the following:
ls -LR | grep .txt
But it doesn't include th …
0
votes
2answers
49 views
Listing everything else than *{.tex, .aux} by ls [closed]
How can you ls everything else the the files *{.tex, .aux}?
I run unsuccessfully
ls -I".tex"
0
votes
1answer
41 views
Portable way to achieve ls’ -v flag (i.e. sort by version)?
I'm working on a some build scripts that I'd like to depend on only standardized features.
I need to sort some files by version. Say the files are bar-1.{0,2,3} bar-11.{0,2,3}.
B …
1
vote
0answers
111 views
what is the @ after the permissions for in ls -l on a mac? [closed]
Consider the following output from ls -l on OS X 10.5.8
drwxr-xr-x 3 user staff 102 Aug 26 20:21 downloads
drwxrwxrwx@ 10 user staff 340 Aug 26 20:12 images
Can anybod …
1
vote
0answers
133 views
To see hardlinks by `ls` [closed]
I run
ln /a/A /b/B
I would like to see at the folder a where the file A points to by ls.
How can you see the actual hard link by ls?
1
vote
4answers
110 views
`ls` exit status
EDIT: nothing to see here!!!
127 return means the command wasn't found - had to give an absolute path to the command for some reason :/ (I didn't delete in case someone else has th …
1
vote
2answers
87 views
XML Output in Java — what’s with DOMImplementationLS ?
I just had to write the following stupid class to avoid going insane:
import java.io.OutputStream;
import org.w3c.dom.Document;
import org.w3c.dom.bootstrap.DOMImplementationRegi …
