×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
On 8/6/21 10:38 AM, Tyler, Matt wrote (and I only just now learned that
for some reason the reply went off-List):
To find file names matching pattern: find . -name "*.sql"
To find file names matching pattern in name and text pattern within: find . -name "*.sql" -exec grep -l 'ABCDE' {} \;
To find file names matching pattern in name and text pattern within using REGEX: find . -name "*.sql" -exec grep -l '.*[a-z]' {} \;
I never even imagined that a *nix-style "find" would be available in
QShell. I will note that the syntax looks more like the Mac OS version
than the Debian version.
But I'm getting some peculiar results.
If I do
find . -name *.jar
in /QOpenSys/QIBM/ProdData/JavaVM/jdk80/64bit, then it *only* returns
./IBMmisc.jar; it doesn't look in any subdirectories.
And if I do it in /QOpenSys/QIBM/ProdData/JavaVM/jdk80/64bit/jre/lib,
which is *full* of JAR files, then it returns nothing, and instead, I
get something even stranger:
find: 001-2187 The option charsets.jar is not valid.
*****
and On 8/6/21 10:58 AM, Birgitta Hauser wrote:
Would be SQL an option?
If so you could use the IBM Service IFS_OBJECT_STATISTICS . . .
For that, I got:
IFS_OBJECT_STATISTICS in QSYS2 type *N not found.
Any idea what is going on with either of these?
--
JHHL
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.