Search Results

Search: Posts Made By: suresh.boddepu
18,326
Posted By suresh.boddepu
TRY
(cat file |grep -v '[0-9]') ; (cat file|grep '[0-9]'| sed 's/,//g')
3,537
Posted By suresh.boddepu
TRY
awk -F"." '{print $NF}' File_Name
1,844
Posted By suresh.boddepu
TRY BOTH
awk '/A1$/' File_Name
(OR)
grep "A1$" File_Name
3,520
Posted By suresh.boddepu
TRY
sed 's/\/$//g' inputfile | awk '{ORS="";print}'|xargs| sed 's/\/$//g'
2,673
Posted By suresh.boddepu
TRY
Before Remove/Renaming you have go to that path where the file "-X" is located.
otherwise replace full path instead of "./"

For Remove:
------------
rm ./-X

For Rename:
------------
mv...
1,678
Posted By suresh.boddepu
TRY
awk '{if(NR%2==1){print $0".h"} else {print $0}}' File_Name
1,584
Posted By suresh.boddepu
TRY WITH BOTH
awk -F":" '{print $2}' File_Name
cut -d":" -f2 File_Name
15,082
Posted By suresh.boddepu
TRY
awk '{ORS = "\""}{print}' File_Name
969
Posted By suresh.boddepu
TRY
cat File_Name |sed 's/---* //g' |awk '{FS=" " ;OFS="|"}{print $1 FS $2 OFS $3 OFS $4 FS $5 OFS $6}'
1,294
Posted By suresh.boddepu
TRY
(pwd;cat File_Name) > OUTPUT_Filename
761
Posted By suresh.boddepu
TRY
awk -F"-" '{print $NF}' File_Name
8,120
Posted By suresh.boddepu
TRY
awk '{print $1 " " substr($2,5,2)}' File_Name
5,426
Posted By suresh.boddepu
TRY
who |sort |awk '{print $1}'|uniq -c |sort -n
3,530
Posted By suresh.boddepu
TRY
echo "ATGACTGtagctagATGCTgtg" |sed 's/[a-z]/N/g'


Best Regards,
Suresh...
4,398
Posted By suresh.boddepu
TRY
for i in `ls *.msa`
do
mv $i core_$i
done
3,704
Posted By suresh.boddepu
TRY
ls -1|nawk -F".xml" '{print $1$2".xml"}'
11,148
Posted By suresh.boddepu
TRY
sed 's/^X/X /g' Filename
19,885
Posted By suresh.boddepu
Try
awk '{if (substr($0,65,1)=="s")print $0}' filename
Showing results 1 to 18 of 18

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