
Size: a a a
D
ИГ
KS
BP
BP
KS
VP
VP
VP
$ cat test.yaml
sesd: "123"
ffggg: '123'
asds: '54654'
$ sed -e "s/: '\([0-9]\+\)'$/: \1/g" -e 's/: "\([0-9]\+\)"$/: \1/g' test.yaml
sesd: 123
ffggg: 123
asds: 54654
A
VP
$ cat test.yaml
sesd: "123"
ffggg: '123'
asds: '54654'
$ sed -e "s/: '\([0-9]\+\)'$/: \1/g" -e 's/: "\([0-9]\+\)"$/: \1/g' test.yaml
sesd: 123
ffggg: 123
asds: 54654
-e
?