|
|
#1 |
|
Registered User
Join Date: Jan 2007
Posts: 1
|
I have found a file named 745809 in the following folder:
/Users/myname/Library/Application Support When I open the text editor it has the following: #!/bin/sh CPU=`uname -p` TARGET=i386 if test $CPU = $TARGET; then exit 0 else exit 1 fi Can anyone tell me what this is for and if it relates to an application? I don't remember seeing this file in this folder before?? Please help!! |
|
|
|
|
|
#2 |
|
MVP
Join Date: Jan 2004
Posts: 1,760
|
Please see man uname
Type 'man uname' with the quotes in an open terminal. It basically gives you the system characteristics such as processor type. This program test to see if you are using a i386 processor. If so, it exits and if not, it throws an errors. I am not sure why it is in your application support folder. Is it not in another folder inside Application support.
__________________
with warm regards Ronald Cross |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|