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.

Similar Messages

  • 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 .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)  

  • An alert messarge i don't underdant: insane object at BDHP + 83ACC in "VI name's":{graphics} (0x80):Front Panel Terminal (Term)

    Hello!
    I don't know why in just yesterday appear in one of my VI an alert message or error message when i want to close oer save the VI.
    The message is like the following one:
    Insane object at BDHP + 93ACC in "Vi name's": {graphics} (0x80}: Front Panel Terminal   (Term)
    I don't know why now it appears this message because i have no modify the Vi.
    I want to ask you why it appears this message and the most important......how can i solve it?
    Thank you very much
    Larson

    Hi!!! I copy and paste from an NI engineer post asking about what is the "insane object" problem:
    This message means that an object in LabVIEW such as a wire or a loop tunnel does not pass an internal test known as a sanity check. If the errors are serious enough, LabVIEW exits because something has become very corrupted. Sanity checks occur before each save, to ensure that corrupted VIs are not written over good VIs. They also happen as part of the compile process. Thus, sanity checks happen frequently. Many insanities are actually fixed (made sane) after the dialog box appears and will not appear again, so the first thing you should do after receiving an insane object error is to try to make a backup copy of the VI, run it, and perform some additional editing to see if the problem was resolved automatically.
    VI corruptions do not happen often. They can happen because of disk corruption, but this will often lead to a file that can no longer be loaded. Corruptions can also happen because the programmer did something that corrupts a LabVIEW data type, perhaps as the result of a call to external code. The following are examples of insane object errors:
    Insane Object at BDHP+4D50 in 'sksks.vi': (graphics) (0x80):wire segment (WIRE)
    Insane Object at BDHP+5CA0 in "CAPL3.vi": (graphics) (0x80):loop tunnel (DCO)
    In the first example above, the error message itself gives information about which object is insane. BDHP means the offending object exists on the block diagram heap, as opposed to the FPHP for front panel heap. The +4D50 is the hex offset in the heap where the object is located. The "Wire Segment" text indicates that the object is a wire object. The "graphics" text indicates that the insanity is graphics-related, which means it is not serious and will most likely be repaired automatically.
    The second message above is similar, but refers to a loop tunnel (i.e., the tunnel formed where a wire crosses the edge of a loop) rather than a wire.
    Solution: If you receive an insane object message, it is best to delete and recreate the most recently created objects on either the front panel or block diagram, depending on whether the error message contains "FPHP" or "BDHP". Make use of the text in the error message in deciding which objects to rebuild. In the case of the second message above, it would be best to delete and recreate the most recently created loop tunnels.
    Another workaround that works best if the VI is small is to select the entire diagram and copy it to a new VI. After saving the new VI, there is a good chance the insane object error will no longer appear. If the VI is too large to cut and paste to a new VI and another computer with an identical version of LabVIEW is available, you can copy the VI to disk (or to your network if that is available) and open it on the second machine. If the insane object errors do not appear, save the VI (on the second machine) and transfer it back to the original PC (by disk or by network). The new, uncorrupted version of the VI should now run without generating the insane object error.
    Hope that helps you,
    Jaime
    Regards,
    Jaime Cabrera
    NI Applications Engineering Spain

  • .term files in Lion

    Hi,
    I am not sure if this is the right place to post this but here it goes.
    Have Apple dropped the capability of saving .term files in the Lion version of Terminal?
    I have tried using export settings which creates a .terminal file, but when I go and open the file in a text editor (TextWrangler) it DOES NOT include the execution string:
    <key>ExecutionString</key>
    <string></string>
    When I try to add the Execution String manually and then open it in Terminal, it states that the file is corrupt and will not open.
    I have looked at older .term files which were created in Panther and they seem to work fine :s

    f0rgiven wrote:
    Where is the archive utility.app?
    It's in /System/Library/CoreServices/Archive Utility.app
    If you lauch that app, you'll have preferences available in the Menu, but I don't think it will help with your problem:

  • Termination txt file not generating for EEA report for canada

    Hi
    When executing the EEA report for Canada ,the report output does not show any error for all the sample data.
    When I generate the txt files, it shows that all 4 files ( i.e. Employee.txt  , promo.txt , term.txt , error.txt) exported successfully.
    BUT when I check the folder created in C driver , I can only see Employee file and PROMO file. The TERM file is not getting created for the PERNRs with termination actions .
    ANY IDEA why is that so?
    HERE IS THE SAP REPORT OUTPUT :
    Summarized Employment Equity report:
           General data
               Industry sectors
                   Transportation & storage indus     1
               Employment status categories
                   Full-time employees                1
                   Part-time employees                0
                   Temporary employees                0
                   Other employees                    0
                   Casual employees                   0
               Provinces
                   New Bruns.                         1
               Designated CMAs
                   New Brunswick less CMA             1
               Peak Dates
                   All employees                  2012/02/09 - 2012/03/03
                   Temporary employees            2012/06/01 - 2012/06/01
           Employee data:                                  1
               00300838 claire ballings
               Event  Status Ind.Se Prov/CMA NOC/Job  Gender Abor.Mino.Disab Salary From    - to
               O      F      07     NB/      0641/02  Women  X               100000 20120209-20120225
               O      F      07     NB/0088  0641/02         X               100000 20120226-20120303
                F      F      07     NB/0088  0641/02         X               100000 20120304-20121231
    Export generated employee files for WEIMS       1 
    But when I check the folder in C drive , no TERM file is created !
    Edited by: Sarika Saini on Mar 7, 2012 2:08 PM

    This report generates the TERM.txt file only if the terminated employee has contract type - Temporary in IT0001 .

  • 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\.....

  • 6i-WEB:How to Refer Terminal Res file

    Can we refer the Oracle Terminal resource files in Web mode and import key bindings???
    Is this supported??
    Please post if any one has tried it successfully.
    I did the following
    <param name="serverArgs" value="module=c:\..dirpath..\ModuleName.fmx terminal=c:\..dirpath..\termfilename:mappingName">
    When running from a Web browser, the applet prints a message saying "Error Opening
    c:\...dirpath...\termfilename:mappingName"
    The same resource file works for me in traditional client server mode.
    Thanks in Advance
    krishns

    Oracle doesn't use the Oracle Terminal file for the web version. It replaced it with a much easier to use text file you edit directly called FMRWEB.RES (NOT FRM, FMR). If you search for this in your Developer Server installation and look at it, you should be able to figure out how it works from the internal comments.

  • Where is the Terminal config file?

    Hello,
    I am trying to add a simple alias as a default to Terminal. Where is the configuration file? I can't find it anywhere.
    Thanks!

    Hopefully you are talking about the Shell's initialization file, where the default shell is 'bash'
    Bash looks for
    $HOME/.bash_profile
    $HOME/.bash_login
    $HOME/.profile
    in that order, and stops looking after finding the first one.
    If you are using a different shell, then the shell initialization file will be different.
    This is totally independent of the Terminal, as you could also be using a different terminal emulator, such as iTerm, or an X11 xterm emulator.  You might be remotely logged in via ssh from a Windows, Solaris, AIX, Linux, HP-UX, etc... system where they are using a totally different terminal emulator.

  • Can't save terminal executable files?

    i haven't done this for a while but in 10.4 i remember being able to save a double clickable terminal command that could be execute from the desktop or wherever
    how do you save terminal executable files

    Use TextEdit, select plain text and save wherever you want. You can rename the file afterwards to the suffix or your needs (like .command). Then making it executable is due, so my first post applies from here on.
    Björn

  • Forms 4.5 Terminal Resource File

    Can anybody explain me how to convert Forms 3.0 .r files
    to forms45 .res. I need to create or convert resource
    files for ansi and linux terminals, but all of OraTerm
    I used can't help me.
    Native (Oracle 7.3 for SCO 5.0.4) Oracle Terminal produce
    corrupted resource files, NT's Oraterm can't generate no
    one of the *.res (parse errors for 'Do', 'Find' , Fx x>12).
    After removing all of such entries it generate *.res, but
    runform don't see my changes...
    null

    hi Andrew,
    I suggest that you call Oracle Forms support. They would have the
    best information regarding your issue.
    Our area of expertise is migrating non-oracle databases and
    applications to Oracle.
    Regards
    John
    Andrew V. Samoilov (guest) wrote:
    : Can anybody explain me how to convert Forms 3.0 .r files
    : to forms45 .res. I need to create or convert resource
    : files for ansi and linux terminals, but all of OraTerm
    : I used can't help me.
    : Native (Oracle 7.3 for SCO 5.0.4) Oracle Terminal produce
    : corrupted resource files, NT's Oraterm can't generate no
    : one of the *.res (parse errors for 'Do', 'Find' , Fx x>12).
    : After removing all of such entries it generate *.res, but
    : runform don't see my changes...
    Oracle Technology Network
    http://technet.oracle.com
    null

  • Oracle terminal resource file path - Forms 6i

    Hi,
    My issue is that I have a Resource file with all the key mappings. I do want to go and replace the file in the forms installation fold\FORMS60.
    Is it possible to create a registry key in Forms 6i like FORMS60_PATH, which enables to attach a resource file at runtime like FORMS60_TERM or something.
    Is it available? or we have to replace the FMRUSW.res in the forms installation path.
    Thanks in advance for your response.
    Regards
    Subramanian Kaushik Gurumoorthy

    As far as i remember you can define the res-file to be used in the command-line when calling forms,but i don't know the exact name of the setting, might be TERM=. Search the online-help for that setting.

  • Insane object BDHP +828B4 {graphics} (0x80):Front Panel Terminal (Term)

    HEllo!
    In my vi appears several erros messages like this
    insane object BDHP +828B4.....front panel terminal or wire segment.....
    I don't know why it appears.
    I'm looking for a solution and i thin there are two ways:
    -copy to a new block diagrama all this one. But my vi is so big and this is a problem.
    -There is another solution in this way:
    close labview
    put LVdebugkey=TRUE on Labview.ini
    open vi
    press CTRL+SHIFT+d, the press CRTL+SHIFT+h
    then it appears a list box
    The problem is that i don't find the LVdebugKey in Labview.ini...where is it??
    Anfd when i press CTRL+SHIFT+d, the press CRTL+SHIFT+h nothing appears.
    Where can i find this debug key and which is the right way to solve this problem without copying to another VI.
    Thanks!!
    Larson

    Ok, the correct way is like this:
    1) Close LabVIEW
    2) Put the key "LVdebugkeys=True"in the LabVIEW.ini file
    3) Open your VI
    4) Press CTRL+SHFT+d, then press CTRL+SHFT+h This will turn on an object browser.
    5) In the top left list box, select the element that contains the name of your VI and the letters BDHP
    6) In the top right listbox, find the line that begins with the error number
    7) Click on the F button
    8) Delete this object and recreate it. It will ususally be a wire.
    But whwn i arribe to the point number 7 i click the F button and all the block diagram disappear....all is clear and the scroll bars are disappeared too.
    What i have to do??
    P.S:i've saved a copy from the original VI
    Thanks
    Larson

  • TS1717 Reinstalled iTunes because the one I had refused to update. Now that it is installed, when I launch it I get the following error message which is terminal: "The file "i Tunes Library.itl" cannot be read because it was created by a newer version of

    I went through the entire uninstall process including deleting all my temp files before reinstalling.

    If you still have an issue you may have to see about using the iTunes version (application) included with Snow Leopard 10.6 from the installer or an another one if available online, and see if that will install.
    Sometimes you may have uninstall the bits left in your system by the earlier (or later) iTunes installers; as they all leave a trace and these can stop a different version of iTunes from being installed.
    Not sure if the following site/link will tell the method...
    •Apple - Support - iTunes - install & update:
    http://www.apple.com/support/itunes/install/
    •Troubleshooting iTunes installation on Mac OS X:
    http://support.apple.com/kb/HT2311
    Good luck & happy computing!
    ps: i see you resolved this issue. it's magic!

  • Strange double identity issue in terminal, text files showing as unix terminal files [suspected 'workgroup' issue?]

    Hey everyone. Using Mavericks 10.9.2 but a few odd things that don't seem easy for me to pin down or change keep coming up. Hopefully most the things I'm concerned about people here can prove me wrong. Firstly over the last few weeks I've noticed that when I log into terminal half the time it says the correct thing, ie, garys-mac-pro:~ gary$
    But sometimes a totally different identity seems to start up, so the text changes from the above to sudo-seedling:~ gary$ and I noticed the following text in my sharing center in system prefs looks like this:
    Terminal: http://i60.tinypic.com/w814eq.png
    Sharing: http://oi60.tinypic.com/w814eq.jpg
    "Your computers name is: gary’s Mac Pro
    Computers on your local network can access your computer at:
    sudo-seedling.local"
    I'd've never changed the name myself, and wouldn't have used that either, which is what aroused my attention. One final thing that I'm not 100% sure is relevant or not is that of late I keep getting 'shared devices/servers', sometimes with names you might expect like BTHUB4 (why would they put a server with an admin password I've not been told in my local network though?) another called WorkGroup (again a server that I can not get any info or access from without a password) and a few times others called ADMIN. I live at home with one other person who doesn't even have a phone, let alone a computer. When these turn up there's no info I can get on them by right clicking get info (all identifiable info just has a perpetuating spinning white wheel), they don't even seem to be accessible though terminal, I tried for a while.
    [EDIT: A brand new 'shared' something has now popped up, is called home, same *** all the other ones (screencap http://i.imgur.com/fZTFsg3.png )
    I've also noticed two similarly "hidden" elusive drives/servers in my root directory called home and net with very odd properties:  they say always say they are zero bytes and created in 2001 =/ But the "date modified" date is always right up to date, and I get the same blank spinning wheels for any info from them.  just dont like having so many new, hidden, remote and unexpected things on my MAC.. So why can I not delete them? Anyone know what these are? Are they normal? See this picture http://oi62.tinypic.com/iyzyc1.jpg
    One final thing I noted that I have no clue about and defo did not set up are the settings in network center for WINS and DNS, the WINS has my 'so called' netbios name, and below that that I'm working in a workgroup called workgroup  http://i57.tinypic.com/jadxmh.png
    And towards DNS both boxes are greyed out and unchangeable, don't know if that is normal or not. Screncap http://oi60.tinypic.com/szbkmc.jpg

    Hey everyone. Using Mavericks 10.9.2 but a few odd things that don't seem easy for me to pin down or change keep coming up. Hopefully most the things I'm concerned about people here can prove me wrong. Firstly over the last few weeks I've noticed that when I log into terminal half the time it says the correct thing, ie, garys-mac-pro:~ gary$
    But sometimes a totally different identity seems to start up, so the text changes from the above to sudo-seedling:~ gary$ and I noticed the following text in my sharing center in system prefs looks like this:
    Terminal: http://i60.tinypic.com/w814eq.png
    Sharing: http://oi60.tinypic.com/w814eq.jpg
    "Your computers name is: gary’s Mac Pro
    Computers on your local network can access your computer at:
    sudo-seedling.local"
    I'd've never changed the name myself, and wouldn't have used that either, which is what aroused my attention. One final thing that I'm not 100% sure is relevant or not is that of late I keep getting 'shared devices/servers', sometimes with names you might expect like BTHUB4 (why would they put a server with an admin password I've not been told in my local network though?) another called WorkGroup (again a server that I can not get any info or access from without a password) and a few times others called ADMIN. I live at home with one other person who doesn't even have a phone, let alone a computer. When these turn up there's no info I can get on them by right clicking get info (all identifiable info just has a perpetuating spinning white wheel), they don't even seem to be accessible though terminal, I tried for a while.
    [EDIT: A brand new 'shared' something has now popped up, is called home, same *** all the other ones (screencap http://i.imgur.com/fZTFsg3.png )
    I've also noticed two similarly "hidden" elusive drives/servers in my root directory called home and net with very odd properties:  they say always say they are zero bytes and created in 2001 =/ But the "date modified" date is always right up to date, and I get the same blank spinning wheels for any info from them.  just dont like having so many new, hidden, remote and unexpected things on my MAC.. So why can I not delete them? Anyone know what these are? Are they normal? See this picture http://oi62.tinypic.com/iyzyc1.jpg
    One final thing I noted that I have no clue about and defo did not set up are the settings in network center for WINS and DNS, the WINS has my 'so called' netbios name, and below that that I'm working in a workgroup called workgroup  http://i57.tinypic.com/jadxmh.png
    And towards DNS both boxes are greyed out and unchangeable, don't know if that is normal or not. Screncap http://oi60.tinypic.com/szbkmc.jpg

Maybe you are looking for

  • AS 2.0 FLV playback multi videos

    I've set up FLV playback for one video, but need to allow users to choose the next movie they want to view (non linear), as well as allow them to click through each movie in a linear fashion. Not sure what code to attach to buttons to: 1. Allow non-l

  • Which better either doing pricing caliculations in ABAP or JAVA(Eclipse):

    Hi all I am working on CRM 5.2 , I want to know which is the best way to develop the pricing forumulaes either in ABAP or JAVA i.e. by using eclipse. plz telll me ..it is very urgent than¨ks shashi

  • Syncing Ipad & iPhone in Seperate Folders

    Need some advice. I currently have an iPad and will be getting the iPhone 4s soon. I want to keep the apps, music, photo's and video's in seperate folders, so when I sync or backup a device it would save it in designated folder. Would you suggest mak

  • ODBC in VB 6, Corrupt/Invalid Data Returned

    We support an app written in VB 6, that uses RDO to connect through ODBC to Oracle 9.2.0.4. The app maintains three Oracle sessions per application instance, one for transactions, one for queries only, and I'm not sure what the other one is for yet (

  • Passing an object from a client to theserver

    I have gone through much of the RMI material and still not fully clear on passing an object of class Object from the client to the server. The Object is constructed on the client and needs to be passed to the server for further manipulation. As it is