Posts

Showing posts from April 21, 2019

Orodes III.

Image
Orodes III. († 6) war ein parthischer König, der von 4 bis 6 n. Chr. regierte. Er soll von den parthischen Adligen auf den Thron gesetzt worden sein, ist dann aber wegen seiner Grausamkeiten kurz darauf ermordet worden (so Josephus). Literatur | Thomas Lenschau: Orodes 2. In: Paulys Realencyclopädie der classischen Altertumswissenschaft (RE). Band XVIII,1, Stuttgart 1939, Sp. 1142. Malcolm A.R. Colledge, The Parthians , Thames and Hudson, London 1967, 47–48 Weblinks |   Commons: Orodes III.  – Sammlung von Bildern, Videos und Audiodateien Vorgänger Amt Nachfolger Phraates V. König des Partherreiches 4–6 Vonones I. Personendaten NAME Orodes III. KURZBESCHREIBUNG parthischer König GEBURTSDATUM 1. Jahrhundert v. Chr. STERBEDATUM 6 This page is only for reference, If you need detailed information, please check here

how to add opening and closing brackets in the condition using unix shell script

Image
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box; 1 I have conditions in a file, that has around 10 thousend lines. As shown below. COLUMN_NAME NOT IN 1234534 COLUMN_NAME1 NOT IN 34252 COLUMN_NAME_2 not in 67496575 COLUMN_NAME NOT in 1234534 foo COLUMN_NAME NOT IN (1234534,453535) rest of the line COLUMN_NAME NOT IN 1234534,453535 columnsd not in (23123124232,6464777) rest on the line COLUMN_NAME NOT IN 1234534 COLUMN_NAME NOT IN 1234534 fdfsdf COLUMN_NAME not in 1234534 COLUMN_NAME not in 1234534 column NOT IN (6764577,434545) COLUMN_NAME not in (1234534) I want to use the sed command to add the brackets after the IN clause. I want to replace the conditions above result in output like below. COLUMN_NAME NOT IN (1234534) COLUMN_NAME1 NOT IN (3422) COLUMN_NAME_2 not in (67496575) COLUMN_NAME NOT in (1234534) COLUMN_NAME NOT IN (1234534,453535) rest of the line