We can't make this file beautiful and searchable because it's too large.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"organizacia","adresa","email" | |
"Agentúra na podporu výskumu a vývoja","Mýtna 23; 814 99 Bratislava - Staré Mesto","[email protected], [email protected], [email protected]" | |
"Agentúra pre riadenie dlhu a likvidity","Radlinského 32; 813 19 Bratislava - Staré Mesto","[email protected], [email protected]" | |
"Agentúra pre rozvoj vidieka","Akademická 4; 949 01 Nitra","[email protected]" | |
"Agentúra rozvoja vodnej dopravy","Námestie slobody č. 6; 810 05 Bratislava","[email protected]" | |
"Agentúra Slovenskej akadémie pôdohospodárskych vied","Hlohovská 2; 949 01 Nitra","[email protected]" | |
"Agroinštitút Nitra, štátny podnik","Akademická 4; 949 01 Nitra","[email protected]" | |
"Akadémia ozbrojených síl generála Milana Rastislava Štefánika v Liptovskom Mikuláši","Demänová 393; 031 06 Liptovský Mikuláš","[email protected]" | |
"Akadémia Policajného zboru v Bratislave","Sklabinská 1; 835 17 Bratislava 35","[email protected]" | |
"Akadémia umení v Banskej Bystrici","J.Kollára č. 22; 974 01 Banská Bystrica 1","[email protected]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
arch=`file $1 2>&1 | awk '{print $3}'` | |
if [ "$arch" == "32-bit" ] | |
then | |
/opt/ida/idaq $1 | |
elif [ "$arch" == "64-bit" ] | |
then | |
/opt/ida/idaq64 $1 | |
else |