Using .term files in Terminal app

I'm having a problem running commands using .term files. I've created the .term files and saved them to ~/Library/Application Support/Terminal. When I open Terminal and go to File > Library, a submenu displays but nothing happens after I select the file I want.
Can anybody help?
Power Mac G5   Mac OS X (10.3.9)  

Hi joang,
Sorry, the only thing I can tell is that it works for me without problems.
What happens if you double click on the .term files in Finder? Do they have correct icon in the Finder? (icon with the Terminal screen with 'TERM' below it)
PowerMac G4   Mac OS X (10.4.5)  

Similar Messages

  • Loading a text file into Terminal App

    Hi,
    I  am  trying  to  load  a  textfile  into  my  Terminal  App  using  the  Import  utility  under  the  Shell  drop  down  menu.
    But  when  I  try  choosing  the  text  files  after  clicking  Import,  I  am   unable  to  select  a  text  file  because  they  are 
    all  greyed  out. Only  folders  seems  to  be  selectable.
    Please  help.

    I have no idea what you are trying to do. What does "load a textfile" mean?
    The Import… command is for importing a Terminal settings file (exported using the Export Settings… command on another computer or user).

  • How to use expansion files for AIR app (flash cs6) on Google Play Store

    I am currently working on an app that will undoubtedly end up bigger than the maximum size of 50 MB for the APK, and I have no clue how to add files to an expansion pack, how to load expansion pack, what files need to be in expansion pack, or even what an expansion pack does/how it works. If anyone can point me in the right direction, that would be great, I want to make an expansion pack now before I get even more files.

    Haven't had a need to do this for file size purposes but since we can now download and use SWFs with ABC, I just specify my external SWFs when I compile and once my app is run it downloads the SWFs (with a pretty preloader) before the user can do anything. I have my own servers so I believe that's all that Amazon Bucket is actually used for. That user didn't have their own web servers to serve up the SWF content from.
    Aside that, check the answer here. Google will turn any extra files uploaded for your app into OBB for you. You just upload the SWF:
    Create expansion file for AS3 android Air App Flash cs6 - Stack Overflow
    It also outlines if you need to upload multiple files then .zip them up and use an AS3 .zip library to extract the files.

  • Working with 3ds files in Mac Apps Programming

    Hi,
    I am an iOS app developer. I am concentarting on Mac Apps programming. I have task which is rendering the objects using '3ds' files in mac apps programming. I found some libraries but no hope. Can any body suggest me please, the best working library for this '3ds' files issue. Sending links also helpful for me.
    Thanks,
    Rajesh.

    I have seen a good solution at http://webdesignsolutions.co.in/add-phtml-extension-in-dreamweaver , this is very simple.

  • Can't open .term Terminal.app files from command line

    Howdy. I use Terminal.app constantly for ssh'ing into numerous remote machines. On my G4 Powerbook I have simply created .term files with customized colors, titlebars, and an appropriate ssh execution string for each machine/userid combination, which I am able to open with "open ~/bin/foo.term". Life is no longer so joyously simple on my new Intel iMac. I create a .term file (via Cmd-s while in a terminal window), but the above command to open foo.term now simply doesn't work on my iMac once a single terminal window has been opened (even after it's been closed) -- I can start one such file only from the finder or via Launchbar or Quicksilver. The only way I can use my .term files is by switching to Terminal and selecting File...Open and clicking on the .term file -- which, being a command line (and Launchbar) junkie, I hate, of course. Applescripts don't work either.
    I would be forever grateful if someone could tell me how to fix this problem!
    txlogic
    Intel iMac Mac OS X (10.4.6)
    iMac   Mac OS X (10.4.6)  

    TXLogic
    I cannot do it either.
    Ah, interesting -- thanks for the input. I had thought the problem might have something to do with the fact that I was using an Intel iMac, but you are using a PPC iBook. The problem isn't with 10.4.6 either, as that is what I'm running on my G4 Powerbook, and the .term files work as expected on that machine.
    Initially I thought it was a
    problem with permissions, i.e the term file hadn't
    the execute bit set (which it did not). Setting the x
    bit though did not help at all.
    Right, the .term files aren't executable.
    A work around was to
    save the command(s) into a plain text document in
    text edit (not rtf) as a .command file (no txt
    extension in this case) and set its execute bit in
    terminal (sudo chmod u+x ...).
    I don't quite understand the workaround -- what command(s) exactly did you put into the .command file? Could you paste the contents of such a file here?
    I have not dealt with term files extensively but I
    noticed that .term files are xml ones. Could anyone
    shed some light in possible changes in the way
    terminal handles them?
    Since the .term files work as desired on my Powerbook, it now doesn't appear that Terminal.app has changed its processing of the files. Something else is going on here.
    txlogic

  • Using Terminal.app with X11

    Dear Apple Discussions,
    I am trying to get X11 and Terminal.app to work together. I read on the forums here that it is possible by going here.
    I followed the instructions to the best of my abilities, yet when I try and open up Emacs in Terminal.app (yes, I downloaded fink and installed the windowed version) I don't get a new window (yes, X11 is running).
    When open up a Terminal window I get the message:
    DISPLAY has been set to .0
    which seems to me to be incorrect.
    Any ideas?
    On a side note, is there a way of changing the META key from being ESC to ALT as it is supposed to be?
    Thanks and sorry if there was a similar post to this, but I couldn't come up with a good query.

    Hi AppleMonkey,
       I'm a little confused by this discussion of the ALT key as Apple keyboards don't have an ALT key. Thus, I assume that you have a keyboard designed for one of those other types of computers. Anyway, X11 does use the ALT key terminology so we do have to discuss it regardless of what type of keyboard you have.
       Long ago someone posted instructions for this that added both Alt_L and Alt_R to Mod1, like so:
    clear Mod1
    keycode 66 = Alt_L
    keycode 69 = Alt_R
    add Mod1 = Alt_L
    add Mod1 = Alt_R
       Of course the main problem is to fix your ~/.xinitrc. The reason that your X11 quits is because X11 replaces it's init process with the execution of the ~/.xinitrc. When that script quits, the process ends, as you observed. The way to keep it running is to replace the script process with a new process that is then in control of XWindows. Traditionally, this process is the window or desktop manager and process substitution is accomplished with the "exec" command. By default the last command in Apple's /etc/X11/xinit/xinitrc is:
    exec quartz-wm
    which passes control of the XWindows process to Apple's Quartz window manager. That default xinitrc also contains commands that process the ~/.Xmodmap file and it is invoked automatically if you have no ~/.xinitrc. Thus, if you're using Apple's X11, it should be sufficient to delete your ~/.xinitrc. Alternatively, you could copy that default file to your home directory with:
    cp /etc/X11/xinit/xinitrc ~/.xinitrc
    If you're using some other version of X11, you should still use the above command to copy in the default xinitrc and then customize it to suit your needs. However, make sure that the "exec" command is the last one in the script and that every other command returns immediately.
    Gary
    ~~~~
       It's a funny thing that when a woman hasn't got anything
       on earth to worry about, she goes off and gets married.

  • Terminal & .term files

    Terminal seems to prefer the internal "settings" approach to storing terminal session settings. With Tiger and earlier, I preferred using many .term files organized in the Finder (docked folder menu) to access my servers. One server per .term file, which worked great.
    Now, every time I open a .term file, Terminal creates a new "setting" internally, and this accumulates every time I open a .term. Looks like I have over a hundred duplicate settings now.
    Is there a way to better deal with this?

    Hi Doug,
    I've finally had some time to play with this a bit and might have a solution. The new Terminal treats .term and .terminal settings file differently. Here's what I've found:
    .terminal files are always added to settings when added. In this case you end up with host, host 1, host 2 host 3, etc in the settings list.
    With .term file, if no chenges are performed via the Terminal application's settings it will only add it once to the settings list (so remove all other entries for the host in question and them open the .term file).
    My problem was Terminal somehow changed my .Term files regarding the action on shell exit, it was Close window, but it was changing them to Nothing (end up with "Process Complete").
    I was able to edit my .term files manually and change the shell exit setting to 1 (close window) and now the .term files behave as they did in 10.4.x. Of course, as soon as any changes are made via the new Terminal it all falls apart again.
    More to come, as I play with this.
    +R
    Message was edited by: Ryan D.

  • How can i use my files(apps,media) from my main os to another os in one mac?

    When yosemite was released, i was excited to install it but the problem is that i don't want my main os to be compromised because i think that yosemite is kinda new and it's only 10.0 version and Dota 2 does not work on Yosemite and it's very unstable according to Steam forums and many other sites. My main OSX is still mountain lion and the only os x version that makes dots 2 stable. What i did is I partitioned my hard drive into two one for my main os and one for yosemite. Now i have two os x on my macbook pro. Now the problem is i don't want to install Logic Pro X again and re-download many samples and stuff. When i open the finder in Yosemite, i can see my mountain lion disk where all my files located at? Can i use those files without copying it because my yosemite disk is only 40 gb and my projects and sample audios is 60 gb and open apps from that disk to yosemite? Thanks. Sorry for the long text. I just want to give you the background.

    If you live near an Apple Store, make a Genius Bar appointment to have the computer tested. Supposedly there is no charge for testing. They can also give you an estimate.
    Genius Bar Reservation US

  • How to specify term file when using static html to run webforms 10g

    I'm using static HTML to run forms
    document.writeln('<PARAM NAME="serverArgs" ');
    document.writeln(' VALUE="escapeParams=true module=genoa.fmx userid= sso_userid=%20 sso_formsid= sso_subDN= sso_usrDN= debug=no host= port= term=/forms90/hsd65html/genoa.res"> ');
    I'm specifying the term as term=/forms90/hsd65html/genoa.res.
    During forms startup I get the message unable to read the file. I can bwoense the file by http://server/forms90/hsd65html/genoa.res
    Any idea how to specify the term file in static html.
    Thanks

    term is not a http address, but a directory address. So, you have to specify the path on the server:
    term=c:\oracle\forms90\.....

  • How to install an app in phone using extension files

    Hi,
    I have a very small doubt in windows development. I am new to windows development and my question is in android phones we can install developed app by using .apk files similarly is there any way to install app in windows phone app which i am developing and
    not yet submitted to store other than debugging.
    Thanks,
    Alok

    There's an Application deployment tool , if you mean deploying the app other then Visual Studio or the other way is to upload the app on store as beta & provide its download
    link to beta testers : Beta testing your app
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • How can I convert .pdf file to .doc using the free adobe reader app? when I try to convert the .pdf file it asks me to sign in. when I click on "sign in", I am taken to a service subscription page. So, no free conversions using free adobe reader app?

    how can I convert .pdf file to .doc using the free adobe reader app? when I try to convert the .pdf file it asks me to sign in. when I click on "sign in", I am taken to a service subscription page. So, no free conversions using free adobe reader app?

    As has been mentioned Adobe Reader cannot export PDF page content. Nor can it create PDF or manipulate PDF page content.
    What you can do is use one of Adobe's online subscription services. Two provide for PDF  to Word export.
    There's ExportPDF and PDF Pack.
    Be well...

  • Writing video files in an App - Crashes when used repeatedly.

    When we are writing video using the UIImagePicker routine the App can crash after repeated recordings. Is this problem related to filling up the RAM faster than the video can be written to Flash? If so, what work around might there be? Or avoiding this by registering Free Ram Space and delaying users activity?

    Hello
    Sometimes the Adobe Viewer, or a custom Viewer, appears to crash. However, the iOS is in fact shutting it down because of a low memory state. You can confirm whether you have this issue by syncing an affected iPad to a Mac. Then retrieve the logs to see if there are LowMemory-[time stamp].log files. Here is where such log files, as well as crash log files, is found:
    Users/[user name]/Library/Logs/CrashReporter/MobileDevice/[device name]
    Look for a LowMemory log file with a time stamp that corresponds to the application's exit. Open it in a text editor and look for a line like the following:
    viewer <42d0b24207f7d625b2fefef7549afce3>   33490 (jettisoned) (active)
    The numbers can vary. However, if the line indicates that the "viewer" process was "jettisoned" while "active," the OS closed the process because of a low memory state. The most likely reason for this is that your viewer is reading into memory images that are larger than 1024 x 1024. Apple recommends against applications loading any image larger than this size as it contributes to a low memory state on the device. It can result in what appear to be application crashes. Review your folio source files and ensure that no images of greater size are used. If they are, simply resample them, and republish your content.
    The low memory state can also be the result of having too many applications running at once. Shut down applications you are not actively using to free up more memory.
    How to free up memory on your iPad
    1. From the home screen, double-click the Home button to display recently used applications.
    2. Tap and hold one of the applications until a red minus appears above it.
    3. Tap the red minus for all apps that are not currently needed.
    4. Tap anywhere above the list of recently used apps, to return to the home screen.
    Laxman

  • Using CLR Swatch File in Adobe Apps?

    Hello --
    I run into this issue occasionally when working with keynote especially. Is there a way to access or use the various color swatches between adobe & apple apps? I understand that .ase swatches work accross PS and AI, but how could either use those in Keynote, or vice versa use the .clr file in Adobe apps?
    any suggestions will be much appreciated.

    Hello Patrick,
    For Photoshop, go to Preferences > General > Color Picker and choose Apple.

  • Publish app that uses XML file.

    Hi, I want to create an App which uses XML file as a data source. I want that XML file is online file on my server downloaded in first use, and looking for changes every time user want to do this, so i have a legal question if apple can release my app in AppStore or they can block it?

    Thanks,
    I have legal right, this is my XML file on my server.
    My main concern is that changing XML in fact i may change entire app. And this make me think apple would not like it. So my question is: maybe someone had similar experience.

  • Ipod nano will not disconnect, another app using a file

    when i try to eject my nano, it says another application is using a file. what do i do, or where is this file,

    Daggum, b. That's my idea, too.
    Also possible is that we are using something like the google desktop thingie or somesuch that indexes the drive for list as you type searching (you know, in a clumsy attempt to imitate spotlight in OS X Tiger). If that is the case, then the drive will not be removeable until the index app is closed out.
    Do we have something like that running?

Maybe you are looking for