Search Results

Search: Posts Made By: bhargav
33,343
Posted By bhargav
echo "10620,"claim processed,paid",reported" |...
echo "10620,"claim processed,paid",reported" | sed 's/$/,/'
6,074
Posted By bhargav
use 'return'
use 'return'
7,667
Posted By bhargav
Find out the corresponding jars for each of the...
Find out the corresponding jars for each of the the import class/pkg and add those jars in the classpath and then start compiling.
3,253
Posted By bhargav
What type of problem you have encountered with...
What type of problem you have encountered with 'vi' ?
3,566
Posted By bhargav
sed 's/\".*//g' test
sed 's/\".*//g' test
17,005
Posted By bhargav
cal | sed '1d' | cut -d" " -f 2 | head -3 | sed...
cal | sed '1d' | cut -d" " -f 2 | head -3 | sed '/^$/ d' | grep -iv mon
1,807
Posted By bhargav
Try simply as follows sed '2 d' test
Try simply as follows


sed '2 d' test
1,641
Posted By bhargav
awk -F"\t" '$1 ~ /[a-z]/ { print $0 }'...
awk -F"\t" '$1 ~ /[a-z]/ { print $0 }' test
5,419
Posted By bhargav
Could you paste first few lines of MF file ?
Could you paste first few lines of MF file ?
4,385
Posted By bhargav
try cygwin for windows ....
try cygwin for windows ....
22,166
Posted By bhargav
echo "$`echo $#`"
echo "$`echo $#`"
2,272
Posted By bhargav
do you have in the cron which is uncommented as...
do you have in the cron which is uncommented as follows ?


05 15 * * * /mydir/myscript.sh > new.out
35,303
Posted By bhargav
try mailx -s "List Of Attendance"...
try

mailx -s "List Of Attendance" RajendraP_Gora@abc.com.sg < abc.txt
134,006
Posted By bhargav
echo "London" | head -c 4 | tail -c 2
echo "London" | head -c 4 | tail -c 2
16,890
Posted By bhargav
swapper process
Can anyone help what 'swapper process' is. Appreantly our production system shows some of the processes as 'swapper' processes for only small amount of time.

Is swapping of the process is...
14,306
Posted By bhargav
Try 'compress' command in the unix box ... ...
Try 'compress' command in the unix box ...
while ftping to windows ... make sure 'binary' mode is set.
2,753
Posted By bhargav
do this way ... sum=0 for i in 1 2 3...
do this way ...


sum=0

for i in 1 2 3 4 5 6
do
echo $i
((sum=sum+i))
done
echo "Summed up value is $sum"

~
1,842
Posted By bhargav
Does the following fulfill what you want to do ...
Does the following fulfill what you want to do


sed "s/example1/example2/" file
8,703
Posted By bhargav
My personal view: Why do n't you setup a...
My personal view:

Why do n't you setup a cron job to run the trigger.sh every 10 minutes or so ? You don't need extra monitoring.

Not sure, this satisfies your situation. Just my personal...
46,725
Posted By bhargav
You have syntax problem here .. sed...
You have syntax problem here ..
sed 's/swap/swap1' filename

Change as

sed 's/swap/swap1/' filename
3,737
Posted By bhargav
try 'ps' command ; More by 'man ps' Check...
try 'ps' command ; More by 'man ps'

Check the output of ps -ef | grep PID
7,361
Posted By bhargav
Can you try by substituting real values for $dell...
Can you try by substituting real values for $dell and $output and try instead of variables.
9,569
Posted By bhargav
check this out .. ...
check this out ..

https://www.unix.com/showthread.php?t=11385&highlight=ftp+automation

Use the search functionality in this site.
7,630
Posted By bhargav
for filename in * do newfile=`echo...
for filename in *
do
newfile=`echo $filename | tr [A-Z] [a-z]
mv $filename $newfile
done
2,488
Posted By bhargav
matches any number of characters preceeded by "_"...
matches any number of characters preceeded by "_" ???
Showing results 1 to 25 of 500

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