-1
votes
3answers
63 views

find directory in a C program

How can I find if a directory exists or not in a C program? I know that getcwd() gives you the current directory but I want to find ANY directory. Is there a function for that or how do I do it? I am ...
1
vote
2answers
32 views

delete all files within a directory that are older than 1 day [duplicate]

I need to ensure that I have no old files left in my directory so what I think I do is find . -type f -mtime +1 -delete i got that from the find man page but then find . -type f -mtime +1 -exec ...
3
votes
2answers
70 views

How to do “for each” on output from find?

I would like to find all mp4 files that is 1920x1080. If I do find . -type f -name \*.mp4 -exec ffprobe '{}' \; 2>&1 it will find all mp4 files and show the video info. E.g. will the output ...
-1
votes
3answers
40 views

How to find total size of all files under the ownership of a user?

I'm trying to find out the total size of all files owned by a given user. I've tried this: find $myfolder -user $myuser -type f -exec du -ch {} + But this gives me an error: missing argument ...
1
vote
2answers
90 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 ...
3
votes
1answer
40 views

how to correctly use prune? -type d and -type f have a different effect on prune?

When I use find . -type f -path ./source/script -prune -o -print; I get files in the "pruned" ./source/script directory. ... ./source/script ./source/script/myapp02.4372d2ea3388.js ...
1
vote
2answers
37 views

How to find files excluding symbolic links?

I want to find files in Linux that follow a certain pattern but I am not interested in symbolic links. There doesn't seem to be an option to the find command for that. How shall I do ?
0
votes
2answers
40 views

git find and rename a string in multiple filenames and folder names

So Basically I need to find all files and folders in my github project containing the string 'persons' find . -type f -print | grep "persons" find . -type d -print | grep "persons" The above works ...
0
votes
2answers
46 views

Calling find from a bash script with find parameters defined by internal logics

I have a script that calls find internally and id like to do something like this: FIND_CRITERIA="-name \"*.[ch]\" -o -name \"*.cpp\" -o -name \"*.hpp\"" if [ "$1" != "" ]; then FIND_CRITERIA=$1 fi ...
0
votes
1answer
55 views

Copy files matching a name in different folders

I am using find ../../ -type f -name <filename>*.PDF -print0 | xargs -0 cp --target-directory=Directory name with path>; but it is copy only one file.It doesn't copy all files which is ...
1
vote
1answer
52 views

Find the difference between two clearcase Labels (Need the newly created element as well)

I would like to find the differences between two clearcase labels and I did use this before: cleartool find -all -element "{lbtype_sub(!:1) && lbtype_sub(!:2)}" -version "{lbtype(!:2) ...
-1
votes
1answer
31 views

Packet jpeg optimization in linux

I have many JPEG images on my server and they added evry day. I need optimize this images. To optimize it I have use next command find . -iname "*.jpg" -exec jpegoptim -m85 --strip-all {} \; But ...
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
1answer
32 views

Find writable files in Mac OS

I want to find (recursively) writable files in my directory. My operating system is MacOS. I tried: find . -type -writable but the shell returns an error: find: -type: -writable: unknown ...
1
vote
1answer
43 views

How to make find -name to return error if no file found

I have tried really hard but could not figure out a way to print an error if find -name \"filename" does not find any file. The code I am using so far is as follows: char *argv[]; ...
0
votes
2answers
181 views

Bash script to find files in a list, copy them to dest, print files not found

I would like to build on the answer I found here: Bash script to find specific files in a hierarchy of files find $dir -name $name -exec scp {} $destination \; I have a file with a list of file ...
0
votes
4answers
400 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
1answer
44 views

excluding .svn .git files from find+xargs+grep pipe

I have an Emacs function (fgf "thing") that creates a subprocess that looks like this: find . \( -type f -a \! -regex '\.(svn|git)' \) -print0 | xargs -0 grep -nH -e 'thing' Basically I don't want ...
0
votes
3answers
78 views

How to count filename length using awk?

How to count max, min and average length of filenames in a directory using awk and find to print the full path? I need to make it in a bash script. The paths are found this way: find $1 -type f ...
0
votes
0answers
35 views

How can customize the linux find command

I have this command in my bashrc mygrep() { find /var/www/project1 -name '*.py' -o -name '*.html' -o -name '*.js' -type f | xargs grep -Hn "$1" ; } i want few modification I don't ...
1
vote
2answers
51 views

Find and basename not playing nicely

I want to echo out the filename portion of a find on the linux commandline. I've tried to use the following: find www/*.html -type f -exec sh -c "echo $(basename {})" \; and find www/*.html -type ...
0
votes
2answers
151 views

How to remove multiple lines in multiple files on Linux using bash

I am trying to remove 2 lines from all my Javascript files on my Linux shared hosting. I wanted to do this without writing a script as I know this should be possible with sed. My current attempt looks ...
1
vote
2answers
46 views

How to search for string in files whose name contains another string and are created in last 7 days in linux?

I'd like to search for string in files whose name contains another string and are created in last 7 days, I tried: find . -type f -name '*name_string*' -mtime -7 | grep -ir '*mytext*' But it ...
0
votes
2answers
53 views

Linux command find usage confuse [closed]

Today when I was using the "find" command. It is a little bit confusing on the usage. The problem: I want to count how many gz files under the main directory. However, the main dir also have sub ...
1
vote
1answer
177 views

Bash script for searching of files (file types) which are defined in the external file recursively in directory using find command

I'd like to search in the directory structure recursively for files of the specific file types. But I need to pass the file types from the external file. The output should be list where each line is ...
0
votes
1answer
60 views

how can I find files that only has the certain permission for owner using bash

I would like to find files only by a certain user's permission. For example, if I want to find a file that I have full permission. I may do something like: find . -user $(whoami) -perm But what ...
3
votes
2answers
36 views

Unix display info about files matching one of two patterns

I'm trying to display on a Unix system recursively all the files that start with an a or ends with an a with some info about them: name, size and last modified. I tried find . -name "*a" -o -name ...
0
votes
2answers
99 views

search/find a folder that has a name with integer numbers in linux from terminal

I am using fedora 15 on my machine. Actually i am trying to find the folders with name like apache-tomcat-7.0.37 by searching in the entire file system Actually i had some folders like below in the ...
0
votes
0answers
91 views

How to use find -exec in CMake execute_process?

I use CMake install(DIRECTORIES...) form to copy headers on install: install(DIRECTORIES ${CMAKE_CURRENT_SOURCE_DIR} DESTINATION include FILES_MATCHING PATTERN "*.h") However, this command does ...
0
votes
2answers
199 views

Rename files and directories recursively under ubuntu /bash

I want to rename all files and directories that contain the word "special" to "regular". It should maintain case sensitivity so "Special" won't become "regular". How can i do this in bash ...
0
votes
3answers
63 views

Find command ignore directory

I am trying to find all files ending in .jar, but it is picking up folders that ends in .jar which is something I do not want. My command so far find . -name ".*jar" I need it so it ignores ...
0
votes
2answers
115 views

Find -type f with restrictions

I have the following find command to find all files in a Volume: find ./ -type f How would I exclude all files that start with . ? Also, I do want to include folders that being with . For example: ...
2
votes
1answer
65 views

Print md5sum of results of a find command in Linux

I am tryng to do checksum on all .jar files I can find in directory and its sub directories. Then print the filename with the checksum value to a file. this is what I have. md5sum | find -name *.jar ...
0
votes
2answers
69 views

What is wrong with my find command usage?

I'm trying to find all files whose name matches certain C++ file extensions but exclude certain directories matching a pattern with this: find /home/palchan/code -name "*.[CcHh]" -o -name "*.cpp" -o ...
0
votes
3answers
154 views

find file names that return success on -exec command

I am using find to find names of databases that return some rows for a query. $ find . -name 'sqlite.db' -exec sqlite3 "{}" 'SELECT * FROM table WHERE column1="value"' \; value|a|b|c|d But I want ...
1
vote
1answer
90 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 ...
1
vote
2answers
51 views

What accounts for increase in time to execute -type f in find

I have done the following commands, on a combination of Volumes which contains about 1M files. $ sudo find "$FULFILLMENT" "$ARCH1" "$ARCH2" "$MASTERING" Tue Jan 29 15:04:05 PST 2013 Tue Jan 29 ...
0
votes
2answers
209 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 ...
1
vote
1answer
94 views

How to get filename, filesize, date modified and store it

I need to get the exact filepath, filesize, and date modified and store it in a mysql table. If I do ls command, it gives me an output that is quite difficult to parse properly to be able to load it ...
3
votes
3answers
146 views

Convert ls output into csv

How would I convert: $ find . -ls > /tmp/files.txt Which gives me something like: 908715 40 -rwxrwxr-x 1 david staff 16542 Nov 15 14:12 ./dump_info.py 908723 ...
0
votes
1answer
44 views

LOAD DATA INFILE selectively with external file

I have a file called /tmp/files.txt in the following structure: 652083 8 -rw-r--r-- 1 david staff 1055 Mar 15 2012 ...
1
vote
2answers
78 views

Optimizing find command

I have about a million files for which I need to get the filename, size, and date modified. Is there any improvement that can be done, performance-wise, on the following command to get this ...
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.
1
vote
3answers
94 views

Running command recursively in linux

I'm trying to come up with a command that would run mp3gain FOLDER/SUBFOLDER/*.mp3 in each subfolder, but I'm having trouble understanding why this command doesn't work: find . -type d -exec mp3gain ...
1
vote
4answers
48 views

Truncated find ./ command

If I do find ./, I get results similar to: /Volumes/FulfilmentArray//.Trashes/1060/ffmpeg2pass-0.log.mbtree.temp Is there a way to do the find ./ command to return only the filename and container ...
0
votes
1answer
143 views

Finding human-readable files on unix

I'd like to find human-readable files on my linux machine without a file extension constraint. Those files should be of human sensing files like text, configuration, html, source-code etc. files. ...
0
votes
1answer
20 views

Make a searchable volume in mysql

I need to put the contents of a Volume in a mysql database, to be searchable via a web interface. To get all the files/folders, I can do: $ cd /Volumes/myVolume $ find ./ Which will give me all I ...
0
votes
4answers
148 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
2answers
29 views

Command available at terminal prompt, but nowhere to be found

This is puzzling. I can use the module command at the terminal prompt, but I can't find where the executable is located in the file system! I did the three following searchs: 1- which module returns ...

1 2 3 4 5 6