SUSPICIOUS-SOURCE(1) General Commands Manual SUSPICIOUS-SOURCE(1)NAME
suspicious-source - search for files that are not the GPL's "preferred form of modification"
SYNOPSIS
suspicious-source [options]
DESCRIPTION
suspicious-source is a script that outputs a list of files which are not common source files. This should be run in the root of a source
tree to find files which might not be the "preferred form of modification" that the GPL and other licenses require.
The files inside version control system directories (like .bzr/ or CVS/) are not considered.
OPTIONS -h, --help
Show this help message and exit.
-v, --verbose
Print more information.
-d directory, --directory=directory
Check the files in the specified directory instead of the current directory.
-m mimetype, --mimetype=mimetype
Add mimetype to list of white-listed MIME types.
-e extension, --extension=extension
Add extension to list of white-listed extensions.
AUTHORS
suspicious-source and this manpage have been written by Benjamin Drung <bdrung@debian.org>.
Both are released under the ISC license.
DEBIAN Debian Utilities SUSPICIOUS-SOURCE(1)
Check Out this Related Man Page
SUSPICIOUS-SOURCE(1) General Commands Manual SUSPICIOUS-SOURCE(1)NAME
suspicious-source - search for files that are not the GPL's "preferred form of modification"
SYNOPSIS
suspicious-source [options]
DESCRIPTION
suspicious-source is a script that outputs a list of files which are not common source files. This should be run in the root of a source
tree to find files which might not be the "preferred form of modification" that the GPL and other licenses require.
The files inside version control system directories (like .bzr/ or CVS/) are not considered.
OPTIONS -h, --help
Show this help message and exit.
-v, --verbose
Print more information.
-d directory, --directory=directory
Check the files in the specified directory instead of the current directory.
-m mimetype, --mimetype=mimetype
Add mimetype to list of white-listed MIME types.
-e extension, --extension=extension
Add extension to list of white-listed extensions.
AUTHORS
suspicious-source and this manpage have been written by Benjamin Drung <bdrung@debian.org>.
Both are released under the ISC license.
DEBIAN Debian Utilities SUSPICIOUS-SOURCE(1)
Can some one help ......
I want to list files with no extension in directory.
I have tried the following
ls * That listed all files
ls *.* That listed files with extension
ls That listed all files
Thanks (5 Replies)
Hi,
Need some simple find help.
I need to search for all .so files within sol directory.
My directory tree has mix of directories and i want to search only inside sol directory.
I could get this done combining find with for, any option to do this with find alone.
for a in `find .... (13 Replies)
hey,
i need to use grep to search a bunch of header files inside a directory to return which file i can find the function i'm searching for in. how do i use wild cards to search through the files? i can only figure out how to search inside the directory, not inside the files that are in the... (4 Replies)
Hi,
I have a root directory which has a big number of other subdirectories and contains a big number of files. I want to copy all these files and directories to another folder except files with certain extension, say .txt, files - how may I do this?
Thanks,
faizlo (8 Replies)
I have a directory ContentAreas
inside that i have many subdirectores
I want the list of all the files inside those sub directories with the complete path
for instance if the file fEthicalRetailOverview.xml is inside the Documents folder LPEthicalRetail
then the the path should come out... (5 Replies)
I want to add a .txt extension to all files in a directory and it's sub directories.
So far I have managed to come up with this for the current directory but how do I do this recursively?
for e in *; do mv "$e" "`echo $e | sed -e 's/\ /_/g'`.txt"; done
Thanks (5 Replies)
Hi All,
I would like to do a loop on all the files with extension .out in my directory this files should be sorted alphabetically.
Then I need to assign to each of them a progressive ID of three digits (maybe in HEX format?).
First I tried to list manually the files as
ARRAY=(
A-001.out ... (5 Replies)
Hi there.
I need to list all the sh extension files, from a particular user, that exists on a computer. How can I do it?
Thanks for reading. (6 Replies)
Hi All,
I need to list the files based modification time of the files from a directory, I cannot use "ls -t" as there are lot of files, which "ls" command cannot handle. New files will land there daily. So iam looking for an alternative through "find"command.
All suggestions are welcomed.
... (6 Replies)
Hi all,
i have 2 directory of files, the first directory(ext1directory) contain files of extension .ext1 and the second directory(allextdirectory) contains files of multiple extensions (.ext1,.ext2,.ext3,..)
so i want to copy the files from directory 2(allextdirectory) that have the same name... (8 Replies)
I'm sure this has been asked many times, but a search didn't turn up a definitive best method for this (if there ever is such a thing).
I have been using rsync to back up my main data directory, but I have accumulated a large number of older backups that I don't need. All of the files I don't... (14 Replies)
Greetings all,
On a RedHat System - I am issuing a command from script.sh that will add a file extension to a listing of files in a directory. It works, but I need to script from having an extension added as well.
Here is what I have tried to no luck:
for file in `ls * | awk ' /\./{print... (6 Replies)
Hi,
I have an inquiry on how do I use the find command in Solaris Unix to find some file ends with extension : txt, err in the root directory with modified date of 30days and this find command will also need to exclude b directory and its subdirectory. All the files from the above find criteria... (5 Replies)