Hi,
I have a file like this:
and what I want to do is remove everything before the "myschema." on each line so that it becomes:
how would I do that?
I tried using sed like this, but it says "unknown command: `f'"
Somebody said awk might be what I'm looking for, but I have no idea how to use awk and can barely use sed.
I have a file like this:
Code:
blah blah blah myschema.table1 blah
blah blah myschema.table2 blah blah
...
Code:
myschema.table1 blah
myschema.table2 blah blah
I tried using sed like this, but it says "unknown command: `f'"
Code:
echo /Chris/myschema-find.txt | sed '/^.*myschema\..*$/myschema\..*$/'