Search Results

Search: Posts Made By: bang_dba
7,981
Posted By Yoda
Your search pattern is wrong. Correction:- ...
Your search pattern is wrong.

Correction:-
sed 's/11042012/SUN_11112012/g' < test.sql > test.sql.mod
1,256
Posted By elixir_sinari
In ksh93: for i in thread* do mv $i...
In ksh93:
for i in thread*
do
mv $i ${i:7:2}${i:13:4}.arc
done
1,256
Posted By raj_saini20
ls thread* | awk '{print "mv "$1"...
ls thread* | awk '{print "mv "$1" "substr($1,8,2)substr($1,14,4)".arc"}' | sh
1,256
Posted By guruprasadpr
Hi $ for i in thread* > do > x=`echo...
Hi


$ for i in thread*
> do
> x=`echo $i | cut -c 8-9,14-17`".arc"
> mv $i $x
> done

$ ls *arc
1_1965.arc 1_1966.arc 2_2034.arc


Guru.
Forum: HP-UX 08-16-2012
3
jdk
2,862
Posted By Peasant
See if this helps : swlist -l fileset | grep...
See if this helps :

swlist -l fileset | grep -i jdk
Forum: HP-UX 08-16-2012
3
jdk
2,862
Posted By bdittmar
Use swlist
Hello,

use swlist

or
ps -ef | grep java

root 1650 1 0 Aug 21 ? 543:44 /opt/java1.4/bin/PA_RISC2.0/java -cp ./lib/m11.jar:./lib/collec

if a java process is available
...
1,601
Posted By itkamaraj
tail -10 $LOGFILE | mailx -s "$SUBJ"...
tail -10 $LOGFILE | mailx -s "$SUBJ" $MAIL_ID
918
Posted By itkamaraj
t1=`bdf |grep /u01|awk '{print $2}'` #Apply the...
t1=`bdf |grep /u01|awk '{print $2}'`
#Apply the above for all other t values
t=`expr $t1 + $t2 + $t3 + $t4`
1,740
Posted By CarloM
crontab(5)...
crontab(5) (https://www.unix.com/man-page/Linux/5/crontab/)
1,740
Posted By pludi
From man crontab: Read: specifying both a...
From man crontab:

Read: specifying both a date & a day of the week means the job will run on both occasions.
Showing results 1 to 10 of 10

 
All times are GMT -4. The time now is 02:22 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy