Searching all Files on Computer


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Searching all Files on Computer
# 1  
Old 01-22-2010
Searching all Files on Computer

Hi I need to search all files on my Solaris box and have to know which files are 2GB or more...any combination of commands to do this?
# 2  
Old 01-22-2010
Hi.

You don't really need a combination of commands.

The find command should do nicely.
# 3  
Old 01-22-2010
find . -size 2000000000c

I am in /....

It is searching right now. Will that do the trick?
# 4  
Old 01-26-2010
find / -name <file or Dir name> -print
-to find a file of directory if you dont know the path it resides
# 5  
Old 01-27-2010
Files equal to or greater than 2Gb .

Code:
find // type f -follow -size +2147483647c -print

 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

UUCP Transfer Files to Old UNIX Computer

I recently installed AT&T UNIX SysV, on an old Pentium computer. I now find that I am unable to transfer files to and from the computer. I previously posted about problems mounting a floppy drive, but that is just bringing up more problems about the filesystem format. JGT brought to my attention... (27 Replies)
Discussion started by: BrentBANKS
27 Replies

2. UNIX for Dummies Questions & Answers

Extract Files from servers to my computer

Hi guys, i need to know how can i download a file (.log) from the server to my compute, once i've finished to run some script.... Please any help i'll appreciate. Thanks..... (2 Replies)
Discussion started by: Newer
2 Replies

3. UNIX for Advanced & Expert Users

Sharing big files with a computer illiterate person

I need some recommendations on how to share big files with a computer illiterate person. I have tried the simple way of using medifire and depositfiles but her office blocks those websites. Torrents would be to complicated for her. Can I please have some other recommendations? (1 Reply)
Discussion started by: cokedude
1 Replies

4. Shell Programming and Scripting

Searching across multiple files if pattern is available in all files searched

I have a list of pattern in a file, I want each of these pattern been searched from 4 files. I was wondering this can be done in SED / AWK. say my 4 files to be searched are > cat f1 abc/x(12) 1 abc/x 3 cde 2 zzz 3 fdf 4 > cat f2 fdf 4 cde 3 abc 2... (6 Replies)
Discussion started by: novice_man
6 Replies

5. Shell Programming and Scripting

copying files from remote computer

hi, i want to copy files from a remote computer in a network to a specific directory on my PC. ( script ) Forexample , IP of the remote PC is 172.16.5.24 login:aaaa Passw:123 /folder1/file1.txt to my pc folder /fd/awa.txt kinldy help Thanks (2 Replies)
Discussion started by: krabu
2 Replies

6. UNIX for Advanced & Expert Users

Searching Files

Hi, I have a file /db01/dat/march 2006/7001DW06.03B Please note, between "march 2006" there is a space/tab. While running the following script, it identifies /db01/dat/march ----> as first file 2006/7001DW06.03B ---> as second file. SRC_PATH = /db01/dat SEARCH_FILENAME =... (12 Replies)
Discussion started by: ronald_brayan
12 Replies

7. UNIX for Dummies Questions & Answers

transferring files to and from remote computer

Hi all, i first have to ssh into my university account and then through there another ssh into my office computer, from my home computer. I have been trying to transfer files to and from with no such luck. How do i send a file from home to my office computer. Do I have to send it to my... (6 Replies)
Discussion started by: yogi1
6 Replies

8. UNIX for Dummies Questions & Answers

Get files from other computer on the network

I wan't to connect to another computer on the network and get a file. I know the IP and name of the computer and have access to it. I've tried the ssh in xterm and think i've managed to logon to it. the file is in /tmp/ on the host computer. I'm using KDE (2 Replies)
Discussion started by: janbanan
2 Replies

9. UNIX for Dummies Questions & Answers

how to copy files from local computer to server

hi, im a newbie using unix. My local computer OS is Windows XP while server is using Unix. May i know how to transfer file from local computer to server? i do not know the commands. Thanks. :) (3 Replies)
Discussion started by: sagolo
3 Replies
Login or Register to Ask a Question