SublimeText 2 - find all occurences and save in file - search

I need to find all occurences of expression in all project files and saved into a separate file. (I need complete list of occurences).
It's possible? (If not, please advice made unpaid simple similar editor with this functionality).
Thanks

You can accomplish this by using Find In Files. Then paste the output in a separate file and save.

Related

Find linux files with similar names but having different date

I have some files named like this:
aaa-bbb-xxx.ext
aaa-bbb-yyy.ext2
aaa-bbb-zzz.ext3
Some of them are of the same date - then I'm not interested in them. I'd like to find only those files which dates (basically, day of editing) differs. How do I find them? Thank you.
Edit: I forgot to mention - all of files are in the same directory, so there is no need to look up for them on the HDD; the only problem is to make a recognition in the following manner:
1. get 3 files matching the pattern
2. check their dates (day basically) of editing
3. if dates are different, list these files; if the same, ignore
4. continue until all files are checked in the directory
Linux command "Locate"
may help you.

Sublime Text file_exclude_settings not excluding file from search results

I have the file
/Users/maxpleaner/Hover/website/ngapps/account/account.partials.js
that I want to exclude from my search results.
Present in the .gitignore is
ngapps/**/*.partials.js
which I would like to ignore via Sublime settings also. But at minimum, being able to exclude all .partials.js files would do the trick.
I tried putting "ngapps/**/*.partials.js" and */partials.js in my file_exclude_settings, but neither one of them actually works to exclude the file from the search results.
What am I doing wrong here? Thanks in advance for your help.
The problem was that I had it as file_exclude_settings but it's actually supposed to be file_exclude_patterns.
facepalm!

SublimeText3 - Find all files without a string?

I've looked around quite a bit for an answer to this, but I cannot seem to find what I need. Is it possible with SublimeText3 > Find in Files to do a search for all files that DO NOT include a string?
I've tried toggling the Regular Expressions button beside "Find:" and entering a value, but I'm not a regex pro, so I may be doing it wrong?
For example, I want to find all files in a designated folder that DO NOT have the following string:
social-links
Any help would be greatly appreciated.
Search for all files in your directory in question (for anything, like a space or the letter e...assuming every file has a space or letter e!), and copy all those file-paths to a new file.
Search for all files with the word, and paste that path-list into a second file.
Sort both files, then compare them to see which lines--which paths--are missing from the has-the-word file. Those are the ones you want.
As far as a single find-in-files search, I don't see how you would do that in Sublime or any other basic text editor. Here is some more information:
https://unix.stackexchange.com/questions/26836/how-can-i-find-all-files-that-do-not-contain-a-text-string
Find files that does not contain a string
How to find all files that do NOT contain specific string in windows environment Visual Studio or any other IDE?
Good luck!

Aptana Search Project Ignoring Certain File Extensions

I've tried search for this but have been unable to find anything on this. Basically, I'd like to be able to search the project that I'm working on but only search files with certain file extensions. Currently it searches everything and this adds time to the search that will never return results for what I'm looking for. Is there a way to do this or am I just out of luck?
Does your search dialog not look like this?
Ctrl + H or Search > Search will bring up this dialog which allows you to put in a file name pattern to limit your search... what are you doing?

mass convert Excel files into tab-delimited text files

Is there a tool to convert a large number of excel files into tab delimted files automatically?
I just through this together, its not pretty but should do what you need. Tested on WindowsXP / Office2007.
download from: http://stembro.byethost17.com/utility_scripts/xl2tab/xl2tab.html
Extract the xl2tab.vbs file to the directory containing the excel files and double-click to run. It will place the converted files into a new directory called "output." The original directory-structure remains intact within the output folder.
I don't think there are any good free tools to do so right now, but you could look into using the Open Office API to write something,
[http://www.oooforum.org/forum/viewtopic.phtml?t=7657&highlight=convert+xls+csv+command+line][1]
Or for a quick and dirty solution, you could record and Open Office Calc macro that would do it, and launch that macro from the command line.
This might also help http://dag.wieers.com/home-made/unoconv/
convert to csv, and maybe replace , with tabs?

Resources