how to run app in BSD under OS X


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers how to run app in BSD under OS X
# 1  
Old 03-22-2002
how to run app in BSD under OS X

Hi,

I have a problem running application in BSD in os x.

I want to run a app called "iCab", so i type "./iCab"...it then gave me a load of "A^@A^@A^@A^@A^@A^@A^@A^@..."

OS X is BSD, so this should mean that i can be able to use the terminal to launch stuff; right?

and also, how can i tell if a file is exectable (since it doesn't have extension like Windows does)?

thanks

P.S. I reading these tutor from FreeBSD' s website
and also there's lots of unix commands not present in os X

Last edited by ah54wxcr4; 03-22-2002 at 11:28 PM..
# 2  
Old 03-23-2002
Computer iCab

iCab is a fully OS X-compliant application, including the Aqua interface. Just double-click on its icon and it will run; dragging a the application program to the Dock is the best way to keep it handy. Regarding BSD programs ("commands") not present in OS X: you're exactly right, although you'll find that many GUI programs (NetInfo, for one) provide the same functionality in easier to use configurations. Of course, you can always install the command line tools if you so choose.
# 3  
Old 03-27-2002
Usually, GUI-based Aqua applications live in directories called '<name-of-the-app>.app'. To run these from the command line just type:

open name-of-the-app

in the directory where you see the '.app' folder.


Of course you have to be at the console to actually see the results, but in any case the app will open and run.


Console commands can be run from anywhere as they have no Aqua GUI. To run them just type:

./name-of-the-app

To know which are executable, do a 'ls -F' and check out the files that have '*' appended to the names.



dani++
 
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Programming

Wuhan Coronavirus Status App for China - Rapid Prototype using MQTT and the IoT OnOff IOS App

With a little bit of work, was able to build a nice "Wuhan Coronavirus Status" app using MQTT and the IoT-OnOff app. More on this technique here: ESP32 (ESP-WROOM-32) as an MQTT Client Subscribed to Linux Server Load Average Messages The result turned out nice, I think. I like the look and... (10 Replies)
Discussion started by: Neo
10 Replies

2. Shell Programming and Scripting

Script to run files with an app

hello, I need help in Unix scripting I have a whole list of file name in a Input file. I need to run the command iteratively and output the result into a text file e.g While read < Input file ; do QUERY filenane done > output.txt Appreciate your help Thank you Suhas;) (8 Replies)
Discussion started by: Suhas Kurse
8 Replies

3. Shell Programming and Scripting

Need Mac .sh to run command line app in seperate terminal

Hello, currently we are executing a .sh from terminal. The current .sh looks like this: #!/usr/bin/env bash /Users/user/my.app/Contents/MacOS/my & -- Now, we also need to run a third line in the .sh - It's a command line application that I need to run when I execute the above .sh... (0 Replies)
Discussion started by: yoyoyo777
0 Replies

4. UNIX for Advanced & Expert Users

run win app on Linux -performance issue

We develop software for diagnostic tools for cars. we a use a portable PC(x86) runs Win98 to run our applications. Hence the working environment in the company is Windows, specifically we use BASIC to develop the GUI, communication functions, DLL, etc. and run them on the Win98 PC. We suggested... (1 Reply)
Discussion started by: raedbenz
1 Replies

5. Shell Programming and Scripting

unable to run mono app using .sh script

I did a search for this problem but couldn't find any specific answers to my problem. We have a .NET application compiled in SharpDevelop for Mono which we want to execute with a .sh shell script on Ubuntu. When we execute the script nothing happens meaning the application's visual interface... (0 Replies)
Discussion started by: JacquesB
0 Replies

6. BSD

for linux and BSD users interested in Unix system V/bsd

for all you unix/linux interested heres an online book for free that covers the basics of BSD SysV Unix commands and applications . giving the average linux user a perspective on the differences in context of the two operating systems and for BSD users covers material as a refernce guide. ... (0 Replies)
Discussion started by: moxxx68
0 Replies
Login or Register to Ask a Question