Search Results

Search: Posts Made By: edidataguy
4,753
Posted By edidataguy
Try this:STR=$(strings MR* | grep MoCoseries) ...
Try this:STR=$(strings MR* | grep MoCoseries)
Beware: you have to code for "What happens if the string is not found"
1,581
Posted By edidataguy
There are different ways to achive this. Try...
There are different ways to achive this.
Try this for one:
$ MYBUILDPATH=/randomstuff/myBuildRoot/data_tables
$ echo $MYBUILDPATH | sed 's~data_tables[/]*$~~'

/randomstuff/myBuildRoot/
$...
29,527
Posted By edidataguy
How about this: sed '1,10d' file*
How about this:
sed '1,10d' file*
40,872
Posted By edidataguy
sed -e 's/\(<[^<][^<]*>\)//g' file.xml OR ...
sed -e 's/\(<[^<][^<]*>\)//g' file.xml

OR

sed -e 's/\(<[^<][^<]*>\)//g; /^$/d' file.xml
Showing results 1 to 4 of 4

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