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.
bash シェル スクリプトで文字列を解析したい
'serverDN' :'/DC=ch/DC=cern/OU=computers/CN=myserverName', \
結果は次のようになります
/DC=ch/DC=cern/OU=computers/CN=myserverName
助けて?
最初と最後を取り除きます。
string=${string#*:\'} string=${string%\'*}
echo "'serverDN' :'/DC=ch/DC=cern/OU=computers/CN=myserverName', \\" | awk -F"'" '{print $4}' /DC=ch/DC=cern/OU=computers/CN=myserverName