Search Results

Search: Posts Made By: thangaraju
1,562
Posted By thangaraju
Hi, Check the following script, for i...
Hi,

Check the following script,

for i in `cat file1`
do
sed -n ' '/${i}/'p' file2
done
3,869
Posted By thangaraju
Hi, Check this sed -i -e '/^ by users...
Hi,

Check this

sed -i -e '/^ by users read/a\ by peername.ip=127.0.0.1 read' slapd_config
3,869
Posted By thangaraju
Hi, check the following sed command ...
Hi,

check the following sed command

sed -n 's/${a}/${b}/g' file1
1,532
Posted By thangaraju
Hi, I am not clear your question, can u...
Hi,

I am not clear your question, can u explain me clearly.

suppose u want to print pattern matching filename use the following command

grep -l "string" *

the above command list what are...
2,176
Posted By thangaraju
Kindly check the following script ...
Kindly check the following script

#!/bin/bash
for i in `ls`
do
sed 's/stringname//' $i >$i,
mv $i, $i
done

If u want delete the string from different locations u have to use ls followed by...
4,009
Posted By thangaraju
Hi, JD=`date +'%y %m'|cut -d' ' -f1,2`
Hi,

JD=`date +'%y %m'|cut -d' ' -f1,2`
4,009
Posted By thangaraju
Hi,
Try this one

JD=`date +'%y %m'|cut -d' ' -f1,2`
4,009
Posted By thangaraju
Hi,
JD=`date +'%y %m'|cut -d' ' -f1,2`

try this command
4,948
Posted By thangaraju
Try this
sort -u file*

or

sort -u file1 file2 file3
Showing results 1 to 9 of 9

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