Tagged Questions
2
votes
0answers
34 views
Fastest Method for Retrieving a File Structure (unix shell) [closed]
Okay, so I know that I can use find to return files in a directory (and nested directories) that match various criteria. However, if I want to return all files with no matching of any kind, then are ...
1
vote
2answers
92 views
Unix find script feature improvement
Below is a simple script that searches for files older than 30 days, then returns the number of files, or ZERO.
I'd like it to do the following, if possible:
exit from the loop if it finds anything ...
0
votes
1answer
31 views
Gnu find: apply -prune to directories which match a pattern in external file
I wonder if there is a more efficient way to obtain directory patterns for use with -prune from an external file:
find . \( -type d -a -exec sh -c "echo \"{}\" | grep -qEx -f patterns.prune" \; \) ...
1
vote
3answers
54 views
Use bash to find a folder name that contains a string
I would like to do this in Bash:
in the current directory, find the first folder that contains "foo" in the name
I've been playing around with the find command, but a little confused. Any ...
0
votes
1answer
31 views
Prevent unix find descending into unmatched directories
This is a little complex, but I want to use the find command to search for items (files, directories etc.) and run a command to determine if they are to be included or not via the -exec parameter, ...
0
votes
1answer
38 views
Find files created within a second or two
Im must to find files created within a second or two but i have no idea how. Im think best way is some find pattern. Or maybe shell script. Can someone help ?
0
votes
3answers
55 views
Unix find with spaces in filenames
I'm using the following shell script to loop through a text file, then delete anything that matches the filename there.
However, it does not work if the filename has spaces in it. How can this be ...
1
vote
1answer
82 views
Create ZIP only when files are found - using shell script
I want to create a ZIP based on the results from find command. But an error is thrown when zip command does not have any content to zip.
find ${DIRECTORY_TO_SEARCH} -type f -mtime -7 | xargs zip ...
0
votes
4answers
425 views
find does not find recursively [closed]
I'm in directory "home" and I run this command
find . -iname *.mov
and it produces
./root/movies/Corey/holtorf/Intro.mov
Now, I "cd .." and run the same command
find . -iname *.mov
This time ...
0
votes
1answer
39 views
How to find files by names which contains brackets?
I have files with names like this:
level(basic)-[done]1.txt
level(basic)-[done]1.pdf
level(basic)-[done]1.doc
I need to find all of them by name.
find * -type f -name 'level(basic)-[done]1.*'
This ...
0
votes
2answers
32 views
How can I compile all files in all subdirectories using find?
I have lots of c++ programs that are unrelated to each other and each one being in only one file. Directory structure looks like this:
dir1
program1.cpp
program1.h
program2.cpp
...
2
votes
2answers
54 views
How to 'exit 1' if this find script returns results
I am not extremely familiar with scripting, but I am trying to learn. I have come across a script I need to use to run a check on a build process in Xcode. If this find operation returns results, I ...
1
vote
2answers
61 views
loop through output of find command in here documents after sudo
#!/bin/bash
sudo -u rei_sh -H -s <<-EOM
echo "hi"
for i in $(find -name *.properties)
do
echo "ivalue is \$i"
done
exit
EOM
I am using the above piece of code.
When I run the code ...
0
votes
1answer
94 views
find grep works in commandline but fails in script; autoescaping by shell?
UPDATE:
After having tried it again, it turns out that the script works exactly as it should. I must have been too tired and doing something stupid that lead me to think the script was wrong when it ...
1
vote
3answers
85 views
UNIX script - find files - show dates
I am running the following command:
find . -atime -30
However in the output, I would like it to display the time stamp of access time. Also would like it to show the user that accessed the file if ...
0
votes
1answer
63 views
Exclude specified directory when using `find` command
I have a directory which contains a number of files (no subdirectories). I wish to find these files. The following gets me close:
$ find docs
docs
docs/bar.txt
docs/baz.txt
docs/foo.txt
I don't ...
2
votes
3answers
214 views
Find all zips, and unzip in place - Unix
I have been trying for some time and believe I am fairly close to this, but I am fairly new to Unix so have been finding this difficult.
I have a folder, containing many folders, some of which have ...
1
vote
1answer
91 views
Optimizing a one-line find + exec command
I need to get the file information (name, size, date modified) of about 1M+ files on a system.
The command I am currently using is:
sudo find "$FULFILLMENT" "$ARCH1" "$ARCH2" "$MASTERING" -type f ...
0
votes
2answers
217 views
Find + ls -lT in compound command
To get the full timestamp of a file, I can do:
$ ls -lT
However, when I try the following:
find . -ls -lT
I get an find: -lt: unknown primary or operator (using find . -ls works).
What would be ...
0
votes
3answers
101 views
Unix command to insert a comment on the top of all files in a directory
I want to add a comment to all files in a directory in Unix. Please suggest a solution if there is any combination of commands I can use.
0
votes
4answers
149 views
csv file replace two character string with three character
I would like to replace a handful of strings with others (e.g. "GG" with "GGX", "GG " with "GGX", "FG" with "FGX", etc) in the first column of a big csv file using a shell command.
I know I need ...
0
votes
3answers
234 views
Would recursive ls and grep be faster than find on a large filesystem? [closed]
I have a question that could use a theoretical answer.
I'm searching over a large, 100+TB volume for all files with a specific attribute. To do this, I've been using the "find" command, since it does ...
3
votes
3answers
485 views
Use find command but exclude files in two directories
I want to find files that end with _peaks.bed, but exclude files in the tmp and scripts folders.
My command is like this:
find . -type f \( -name "*_peaks.bed" ! -name "*tmp*" ! -name "*scripts*" ...
0
votes
3answers
150 views
grep something with xargs and find
bash guru ;) I'm trying to improve some string in bash which grep specific keyword's matches in specific files. It looks like that:
find /<path>/hp -iname '*.ppd' -print0 | xargs -0 grep ...
0
votes
1answer
258 views
find: missing argument to -exec in bash script
The following works fine when I type it exactly in the command line:
find /<some_path>/{epson,epson_laser,epson_inkjet} -iname "*.ppd"
-exec grep "\*ModelName\:" {} \; | sed ...
0
votes
2answers
505 views
use xargs to mv the “find” directory intio another directory
all. I have the following command:
find . -type d -mtime 0 -exec mv {} /path/to/target-dir \;
This will move the directory founded to another directory
How can i use xargs instead of exec to do ...
1
vote
2answers
120 views
Find files older than FILE without including FILE
I have a plan to use find to give me a list of files that are older than some FILE and then use xargs (or -exec) to move the files to somewhere else. Moving stuff is not a problem; | xargs mv {} ...
2
votes
1answer
117 views
how to find specific text in files using grep in shell
I want to search for some string is all subfolders directly in files
I need to find out string:
DEBUG ('[S:B:H] project=', $project->name, ...
0
votes
2answers
65 views
How to collect all README files and rename them in a folder?
For example, I have these files:
/Applications/Emacs.app/Contents/Resources/etc/images/custom/README
/Applications/Emacs.app/Contents/Resources/etc/images/ezimage/README
...
-2
votes
2answers
3k views
Delete files older than 10 days using shell script in Unix
I'm new in shell scripts, can any one help? I want to delete scripts in a folder from the current date back to 10 days
The scripts looks like:
2012.11.21.09_33_52.script
2012.11.21.09_33_56.script
...
1
vote
3answers
2k views
Chmod recursively
I have an archive, which is archived by someone else, and I want to automatically, after I download it, to change a branch of the file system within the extracted files to gain read access. (I can't ...
0
votes
2answers
386 views
Write a shell script that find-greps files and outputs only those filenames
I want to search files in particular folder and content, then I want to print only the name of the files found.
I have a command:
for file in $(find from | xargs grep 'move')
do
echo $file
done
...
3
votes
4answers
84 views
Using shell to finds directories that do not have a specified pattern of files in the folder
The directory tree is like this:
.
├── A_123
│ └── 123.txt
├── A_456
│ ├── tmp
│ └── tmp.log
└── A_789
└── 789.txt
There're 3 directories (A_123, A_456, A_789).
The pattern of a ...
3
votes
2answers
143 views
-execdir interpretation on Linux and OSX
find . -iname '*.rar' -execdir ls {} +
this will not work under OSX Lion, yielding ls: blabla.rar: No such file or directory etc..
Additionally, above will work under Linux. However, it will invoke ...
0
votes
1answer
70 views
Not getting result with find command in custom alias in linux
I have this command in my .bashrc
mygrep() {
find /var/www/site1 -exec grep -Hn "$1" {} \;
}
But sometimes its not returing results
But this command return full results
grep -r ...
-1
votes
2answers
122 views
Bash - Strange behavior when assigning `find` result to variable
I am attempting to do some simple directory mangling via a bash script, but I am encountering some odd behavior (OSX 10.6).
When I issue the following command within the target directory, I get the ...
0
votes
4answers
130 views
Select files in a dir that have more than 'n' lines in shell script?
I am trying to select files that have more than 'n' number of lines in a shell script and move them to another directory.
The following command works fine from the command line but not in ashell ...
0
votes
2answers
62 views
Character Classes for find command using emacs regex style
For example, I want to find a file ends with numbers+.bed, it works if used this:
find . -regex ".*/[0-9]+\.bed"
As I know, find uses emacs regex style by default, so I found this page: ...
2
votes
2answers
182 views
Use current filename (“{}”) multiple times in “find -exec”?
Many sources say that every instance of {} will be replaced with the filename found through find, but when I try to run the following, I only get one text file and its name is ".txt"
find /directory ...
1
vote
3answers
259 views
find and cat to merge csv files
I have thousands of files in sub-directories of ~/data. I wish to merge all those csv files with a certain extension say .x and save the merged file to ~/data/merged.x
I know I need to use find,cat ...
2
votes
1answer
210 views
Find file and send it to ftp
I am new in bash scripting and I have to write a script that finds the newest .mpg file in directory and then sends it to a ftp server. So far I found command that find my file.
#! /bin/bash
find ...
0
votes
1answer
21 views
Regluar expression in find command in bash [closed]
why 'save$' can not match the file named save?
root@debian:/home/tiger# ls /home/test
save
root@debian:/home/tiger# find /home/test -regex 'save$'
root@debian:/home/tiger# find /home/test -regex ...
-1
votes
1answer
74 views
find files from directory if exist or not exists
I have a file having multiple lines of files. I also have a directory wherein i have all the files, now I want to find the files which are listed in a file exists in directory or not via shell script.
...
0
votes
1answer
68 views
How to find directories (not) containing a certain file efficiently
I need to list all directories that contain CACHEDIR.TAG file, or to list all that don't. So far, I came up with
find ~ -type d -exec test -f {}/CACHEDIR.TAG ';' -print
and
find ~ -type d -exec ...
2
votes
5answers
272 views
find all files except e.g. *.xml files in shell
Using bash, how to find files in a directory structure except for *.xml files?
I'm just trying to use
find . -regex ....
regexe:
'.*^((?!xml).)*$'
but without expected results...
or is there ...
0
votes
0answers
102 views
Find spammer scripts [closed]
I keep seeing scripts such like these crop up periodically on my servers (host some clients), and would like to write a script to periodically scan the directory "/home/" for any files that match the ...
3
votes
5answers
128 views
Efficient way to find paths from a list of filenames
From a list of file names stored in a file f, what's the best way to find the relative path of each file name under dir, outputting this new list to file p? I'm currently using the following:
while ...
3
votes
2answers
695 views
How to find/grep all paths where directory name matches “x” but not “y” on *nix?
I have a folder structure like this (which is a small snippet):
└── test
└── cases
└── model
├── client
│ ├── socketsTest.coffee
├── server
...
-1
votes
2answers
578 views
shell to find a file , execute it - exit if 'error' and continue if ' no error'
I have to write a shell script and i don't know how to go about it.
Basically i have to write a script where i'd find a file ( it could be possibly named differently). If either file exists then it ...
1
vote
4answers
215 views
xargs - multiple commands and rm at the end
I'm trying to remove the file that I was working on previously but it's not letting me, please help. Here is the command I run:
find . -type f -name '*.flac' -print0 |
xargs -0i ffmpeg -i {} ...
