Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は行を持っています:
something ..fdfad ABCD info fdsafsda fae faefdsa fABCD info23
ABCDの後にラインを取得したい
$ sed 's/.*ABCD //' file info info23
シェルに処理させます。
line="something ..fdfad ABCD info" printf "result:%s\n" "${line##*ABCD }"
これにはawkを使用できます
awk '{printf "%s\n", $NF}' FS="ABCD" myfile