Case/lower/upper in vi1452 (9/19/2012 3:00:41 PM) comp.unix.shell
I have a file similar to the below with multiple entries of a similar nature.
I want to change /riskops/RISKOPS to /risktss/RISKTSS in one VM command. I can do it easily in two. Just basically the same ... jwilliam(49)
NFS monitoring339 (12/14/2012 11:56:55 PM) comp.unix.shell Hi,
I=B4m looking for any reliable way to monitoring NFS using shell
scripts, is there any way ?
Thanks.
... contracer11(156)
find/xargs substiution5437 (2/14/2013 12:00:21 PM) comp.unix.shell If I want to remove all files starting with "foo" in my directory I can do:
find . -name foo.* | xargs rm '{}'
or use -exec. What if I want to rename them to bar.* instead of removing them?
I would no... mortonspam(827)
bash equivalent to perl regex1441 (3/17/2013 9:03:53 PM) comp.unix.shell Happy St. Pat's ng,
I find myself wanting to remove leading whitespace and digits, much like
this perl script:
#!/usr/bin/perl -w
use strict;
use 5.010;
use File::Slurp;
my $in = 'phpini.sh';
my $o... cal819(188)
shell command631 (4/2/2013 9:00:00 PM) comp.unix.shell Hello all,
I have a Makefile which starts with the following:
LIBS=$(shell pkg-config fftw3 gimp-2.0 --libs)
It fails with
Package fftw3 was not found in the pkg-config search path.
Perhaps you shou... guillaume5330(1)
What meaning of the ',' in ifneq ($(KERNELRELEASE),)117 (4/27/2013 12:14:31 PM) comp.unix.shell
Hi,
I am reading the following Makefile script. I do not understand the ',' in the ifneq clause. I do not find the explanation in a pdf book on 'make'. Could you explain it to me?
Thanks,
...... rxjwg98(313)
How to generate milliseconds time stamp in Unix89 (5/28/2013 5:51:56 PM) comp.unix.shell Hi,
I am trying to capture system time up to milliseconds from Unix and I am using HP-UX 11.31. It seems to me that Unix date command doesn't have the millsecond precision or I may not be doing something cor... nickli2000(9)