Steve,

 

Hopefully someone will understand what you are asking and be able to
assist.

 

Sadly, I don't understand what you mean by "app name" and "Realtime" ?
Would you mind providing a bit more detail about what you want to
achieve?

 

For finding files with specific text I often use the following, though
it does not follow symbolic links.

find . -type f -name "*.*" -print0 | xargs -0 -e grep -nH -e "
OpenMeetings "

find /path/to/directory -type f -name "*.*" -print0 | xargs -0 -e grep
-nH -e " OpenMeetings "

find /var/lib/red5/webapps -type f -name "*.*" -print0 | xargs -0 -e
grep -nH -e "OpenMeetings"

1.      How do I search directories recursively? 

2.            grep -r 'hello' /home/gigi

searches for 'hello' in all files under the /home/gigi directory. For
more control over which files are searched, use find, grep, and xargs.
For example, the following command searches only C files: 

          find /home/gigi -name '*.c' -print0 | xargs -0r grep -H
'hello'

This differs from the command: 

          grep -H 'hello' *.c

which merely looks for 'hello' in all files in the current directory
whose names end in '.c'. The 'find ...' command line above is more
similar to the command: 

          grep -rH --include='*.c' 'hello' /home/gigi

 

Thanks,

 

George Kirkham

 

 

From: Steve Forster [mailto:steve.fors...@datacomit.com.au] 
Sent: Thursday, 14 November 2013 11:05 AM
To: user@openmeetings.apache.org
Subject: App name not updating

 

Hi,

 

I have a strange issue updating the app name. I've changed it in
config.xml and in the application however it doesn't update in the
application.

 

I ran grep in SSH (grep -r -H "Realtime" *) but it couldn't locate any
instances of the name either.

 

Can anyone advise?

 

Regards,


Steve Forster

System Architect

eCommerce Consultant

datacomIT 

_______________________________________________________________________
If you require urgent assistance, please contact our helpdesk on

(03) 9522 2022 or mailto:helpd...@datacomit.com.au
<mailto:helpd...@datacomit.com.au> 


Tel: +613 9522 2014 Fax: +613 9522 2099 Mobile: +61 411389531

email: steve.fors...@datacomit.com.au
<mailto://edgar.fe...@datacomit.com.au>   www:
http://www.datacomit.com.au/ <http://www.datacomit.com.au/> 
70 Dorcas Street Southbank VIC Australia 3006 A.B.N. 67006527840

 

 

Message protected by MailGuard: e-mail anti-virus, anti-spam and content
filtering.
http://www.mailguard.com.au/mg

 
 

Reply via email to