A utility in Unix-like systems such as Linux used for listing files and directories.
0
votes
1answer
26 views
Linux Centos - 'ls -d' command won't list folders
So I think I have a little user right issue.
Have been scripting a Webserver Control panel.
At a point in this script I'm listing all folders for a user into an array so I can compare it to the user ...
0
votes
0answers
17 views
Recursively list full absolute path of files with permissions in Linux [migrated]
I have done a bit of searching online, and I am trying to find a way to recursively list all files with their absolute path and with their permissions. I want to do this so that I can grep out what I ...
1
vote
2answers
30 views
How to convert ZSH ls timestamps to %Y-%m-%d?
Anyone know how to convert ZSH ls timestamps to %Y-%m-%d?
From This(ZSH):
host1% ls -lrt | tail -1
-rw-r----- 1 user group 4802 Mar 21 15:41 get.csv
To This(BASH):
user@host1:/home/user> ls ...
-1
votes
1answer
27 views
Using the man command in Unix, I want to list file names with file size etc. [closed]
By using the man command I want to list the names of the files I have already created with extra information such as filesize, date of modification etc.
I know I have to use the man command possibly ...
-1
votes
2answers
42 views
Cutting the column including size
I want to cut the column which include the size of files . I use ls -l to view info about files in current localization . I save info about file in txt file ls -l > info.txt , and now I want to cut ...
0
votes
2answers
33 views
linux custom list directory
I know it's a dumb question: how can I ls some directory (files+directory inside) and return something like : 0 for files, 1 for directory, 2 for simlink
<name_dir>,1
<name_dir>,1
...
0
votes
1answer
47 views
Bash replace ls with for loop
I was given a tip to use file globbing in stead of ls in Bash scripts, in my code I followed the instructions and replaced array=($(ls)) to:
function list_files() { for f in *; do [[ -e $f ]] || ...
0
votes
2answers
33 views
Unix - ls command shows some “outputted” text as a file
bash-3.2$ ls -ls
total 48
4 -rw-r--r-- 1 hdoostie etrade 1545 Aug 8 2012 ~
4 drwxr-xr-- 11 hdoostie etrade 4096 Dec 28 2011 det-us
4 drwxr-xr-- 6 hdoostie etrade 4096 Sep 18 2012 etaf
12 ...
2
votes
0answers
24 views
List file range with UNIX wildcards [migrated]
Say for example I have the following files in my working directory:
mjk0001.fits, mjk0002.fits, ... numerically increasing all the way to mjk9999.fits.
Is there a way to use UNIX wildcards to list or ...
0
votes
1answer
19 views
IF depending on number of files per folder --unix
I want to do different actions based on the number of files in each folder which start with same two letters --- if files in TS are less than or equal 6 to do one set of actions and otherwise do ...
0
votes
2answers
56 views
C, total from unix ls function
I have to make ls -l function. My problem is to find the total value from ls -l. Here is how I do it.
if (l_option) {
struct stat s;
stat(dir_name, &s);
printf("total %jd\n", ...
1
vote
1answer
81 views
SFTP directory listing to local txt file
I am having problems with trying to list a directory on my sftp server to a local .txt file.
I need to use commandline. So i have figured out putty is just about the only client that can do this.
...
-1
votes
5answers
47 views
Unix Command Files [closed]
I've looked everywhere and asked my instructor many times, but I can't get the answer to this one so I'm finally reaching out...
I am supposed to copy the unix command files: ls, mv, and bash from ...
0
votes
1answer
25 views
How to create a correct array with ls?
I already know that I can use array=( $( ls . ) ) but I have the next problem with this code:
array=( $( ls ./COS/cos*.txt ) )
for (( i = 0 ; i <= ${#array[*]}-1; i++ ))
do
sed ...
0
votes
1answer
25 views
Unknown error 524 with fuse
I tried to make an "ls -l" command on a mounted directory with fuse, but I get this error message:
Unknown error 524
What does it mean?
1
vote
2answers
55 views
How to handle ls | “pipe” command in C
I have a shell program written in C, and when I try to run the command "ls |" (Just ls and a pipe with nothing after it), my program loops forever. You can ignore the modePtr... What this parser does ...
0
votes
1answer
31 views
Bash: Formatting results inside for loop from a ls command
How come the additional 'Line' insideecho "Line $line" is not prepended to all files inside the for loop?
#!/bin/bash
INPUT=targets.csv
IFS=","
[ ! -f $INPUT ] && { echo "$INPUT file not ...
1
vote
2answers
67 views
Using ls in Python subprocess.Popen function
proc = subprocess.Popen(['ls', '-v', self.localDbPath+'labris.urls.*'], stdout=subprocess.PIPE)
while True:
line = proc.stdout.readline()
if line != '':
print line
else:
...
1
vote
0answers
60 views
240 bit radar word
I Have a project using a 240 bit Octal data format that will be coming in the serial port of Arduino uno at 2.4K RS232 converted to TTL.
The 240 bits along with other things has range, azimuth and ...
2
votes
2answers
69 views
Bash script - how to fill array?
Let's say I have this directory structure:
DIRECTORY:
.........a
.........b
.........c
.........d
What I want to do is: I want to store elements of a directory in an array
something like : ...
0
votes
2answers
94 views
find only files with extension using ls
I need to find only files in directory which have a extension using ls (can't use find).
I tried ls *.*, but if dir doesn't contain any file with extension it returns "No such file or directory".
I ...
0
votes
1answer
42 views
Find and delete multiple argument directories
Say I have 3 directories .git, .hg and .svn somewhere in the folder called lol.
How can I find and remove all of these?
The following does so only for the last one (.svn):
$ find lol -type d -name ...
0
votes
1answer
125 views
UNIX Shell: List all files in directory excluding directory names
I want to list all the files in a directory recursively. I am storing this output in a file that I will later iterate through and use each line as an argument in another command.
However all the ...
-1
votes
2answers
59 views
Using the ls command to list files by type [closed]
Is it possible to list files by type as one would do in a graphical file explorer (Windows, Nautilus, ...)?
The command man ls | grep type doesn't give me any hepful information, other than coloring ...
0
votes
1answer
64 views
how to change extended file attributes of files on mac?
I had some iOS projects in my macbook,one day I copied them to my pc which is based on windows system, then some day I copied them back to my macbook and I found the projects can not run.
I Opened one ...
0
votes
1answer
64 views
Cygwin commands don't work
I'm sorry that my question seems rather vague but this is the entire problem i'm facing. I tried installing an rpm package on cygwin after downloading it from the website but i always get the same ...
1
vote
1answer
63 views
In a subshell, how to read an environment variable from the calling shell?
For the obvious reason I do not want to export COLUMNS in my normal bash shell.
However for the purpose of one particular subshell, I need access to the value of COLUMNS of its parent. In other ...
0
votes
2answers
88 views
How can I list (ls) the 5 last modified files in a directory?
I know ls -t will list all files by modified time. But how can I limit these results to only the last n files?
1
vote
4answers
424 views
unix 'ls' command with wildcard input - equivalent in java 6
I need an equivalent behaviour in java for this command in Unix cli:
ls /data/archive/users/*/*.xml
Which outputs me:
/data/archive/users/2012/user1.xml
/data/archive/users/2013/user2.xml
Is there ...
0
votes
1answer
86 views
how to list files in Unix without the modified date
I'm trying to create a zip file that will run on multiple servers to compare the contents of the servers. For many reasons, the easiest and best piece of information for me to compare is a text file ...
2
votes
1answer
54 views
ls: how to display directory + filename on each line
I have a directory with a lot of subdirectories, and I want to list all its files with a certain extension on each line, including the (sub)directory they're in. I'm now using:
ls /home/directory -R ...
2
votes
4answers
930 views
Linux: How to list all files/directories, using only ls
This is a question given at university.
The question is: List all files/directories inside testfiles folder, that have no extension.
The right answer given is this:
ls testfiles | grep -v "\."
...
-5
votes
1answer
12 views
Compiling a value of the command prompt? [closed]
(- from 12:05:30 to 12:05:30 -) date
Wed Mar 14 00:05:33 EDT 2012
(- from 12:05:30 to 12:05:32 -) date
Wed Mar 14 00:05:52 EDT 2012
(- from 12:05:30 to 12:05:52 -) date
Wed Mar 14 00:05:59 EDT 2012
(- ...
5
votes
7answers
279 views
How to use “ls *.c” command in java?
I am trying to print "*.C" files in java
I use the below code
public static void getFileList(){
try
{
String lscmd = "ls *.c";
Process p=Runtime.getRuntime().exec(lscmd);
...
0
votes
0answers
6 views
date added information (journaled filesystem)
I'm wondering if when using a journaled filesystem, is it possible to list the files in a directory by the date they were added or moved (and not necessarily the date created)?
For example, if I'm ...
0
votes
1answer
90 views
PHP readdir, glob and exec('ls') return in an empty array for some directories under Apache
I have developed the following PHP code in order to read a specific directory called /dados/capture:
tst2.php
<html>
<body>
<?php
echo "whoami: " . ...
0
votes
1answer
114 views
ls filter on channelsftp
Are there any way to filter the files to list using this api? for example:
ChannelSftp sftpChannel;
sftpChannel.ls(path);
This lists all, but I would like to filter the files that begin for ...
0
votes
0answers
31 views
Perform action to ls output (copy highest named directory)
Say I a main directory (albums), and that contains many albums (album_name), and within each of those contains 3 sets of resolutions, (1080, 2000, 4000), but not always those 3, could be just 1000 and ...
1
vote
3answers
57 views
How can I list the contents of zip file without decompressing it?
How can I get the equivalent of a ls of a .zip file (not gzip), without decompressing it, from the command shell?
-1
votes
4answers
237 views
perl one liner to match exact word in path on many different values with special characters
How to match exactly the $TARGET_NAME value from find /tmp -type l -exec ls -l output
$ find /tmp -type l -exec ls -l 2>/dev/null {} +
lrwxrwxrwx 1 root root 24 Mar 18 12:41 /tmp/test/link ...
0
votes
2answers
106 views
Regular Expression usage with ls
I am trying to use ER (Extended Regular Expressions) with ls like ls .+\..+.
I am trying to print all files which contains an extension
(I know I could have used ls *.*, but I wanted to try using ...
-1
votes
3answers
143 views
issues “using ls -al --full-time” in OSX [closed]
--full-time is a handy little option for ls but it doesn't work when used in a batch file.
ls -al --full-time when used at the command prompt yields a an expanded date and time:
2012-01-16 ...
0
votes
3answers
243 views
list file names with sorted order - ls command
I have some files in a UNIX directory:
/opt/apps/testloc $ ls -mn
test_1.txt
test_2.txt
test_11.txt
test_12.txt
test_3.txt
I want to list this with ls command and I need the output in sorted ...
1
vote
1answer
92 views
DIR_COLORS customization
I am customizing my DIR_COLORS (~/.dir_colors) to colorize ls on my terminal.
I get how to change colors of files whose names ends in a known extension:
.cpp 0;34
But I would like to set colors ...
1
vote
1answer
54 views
Session directory growing despite deleting files
One of my servers has clearly had a buggy session garbage collection routine. The result is that the session dir contains millions on files. Deleting these will take weeks, but it seems like the ...
0
votes
1answer
305 views
Can't build FTP data connection
I am able to connect to an FTP server but not able to list files using the "ls" command. The following error was displayed:
500 illegal port range rejected
Can't build data connection: Operation time ...
0
votes
2answers
60 views
terminal cant do ls or cd
Can anybody explain what is wrong with my terminal:
$ echo $PATH
=/usr/local/bin
$ ls
-bash: ls: command not found
$ cd
-bash: find: command not found
Why won't these commands work? Help? ...
0
votes
1answer
67 views
Powershell save directory path from ls search?
I am trying to recursively search a directory for a specified file that contains an .exe and then save that directory path to then use in a variable later.
I figured that using:
ls -recurse -filter ...
1
vote
2answers
209 views
pattern matching while using ls command in bash script
In a sh script, I am trying to loop over all files that match the following pattern
abc.123 basically abc. followed by only numbers, number following . can be of any length.
Using
$ shopt -s ...
0
votes
2answers
49 views
sed not properly passing stdout to ls
I'm trying to edit a simple string in sed that I've been having issues with.
Basically what I'm trying to do is grab my current working directory using pwd, pipe it to sed, edit the file path, then ...



