"Command Line Here" in Finder

In Windows Explorer, I can right click a folder and click "Command Line Here" to launch the command prompt at that path. Is this doable in Leopard? Thanks.

I see your point. Thanks. I use the command prompt and the "command line here" pretty often in Windows, having grown up with DOS, and was just hoping to find the same thing. If such an option is not readily available, I'll just use Thomas' workaround. We can't ask for everything right?
BTW, I am still looking for a keyboard shortcut to lock my screen without putting the Mac to sleep. In Windows, I just hit Windows-L key combination (to switch users). I know that in Mac I can click on Lock Key Chain or Switch Users on that bar at the top of the screen, but I can't find the keyboard shortcuts for that (without writing some script or hack that is). I would like to avoid having to use the mouse. Furthermore, the hot corners (for screensavers) somehow don't work when I move the mouse pointer there so hot corners is not an option. But really, there is no keyboard shortcut for locking the screen? I've searched everywhere but can't find it.
After, Vista's dissappointing performance, I am looking for an alternative OS and really liking Leopard so far. Any help to ease my transition would greatly be appreciated. Thanks.

Similar Messages

  • Command line version of finder's get info command

    I am trying to find which version of MS Office 2008 is installed on a bunch of machines. On one machine, I can just do a get info on the MicrosoftComponentPlugin.framework, but I don't want to have to touch every machine.
    Does anyone know of a way to get this info using the command line?
    Ideally, I would like to use ARD's send unix command to grab this info from a lot of machines, then run install the .mpkg on the machines that aren't the latest version...
    Thanks in advance

    Maybe not. According to the defaults man page:
    WARNING: The defaults command will be changed in an upcoming
    major release to only operate on preferences domains. General
    plist manipulation utilities will be folded into a different
    command-line program.
    They say there will be an upgrade path, but I can't imagine it being named "PlistBuddy". That sounds way too much like some programmer named it. They need something more professional. plutil is already taken, but maybe it could be enhanced. plmanip maybe.

  • How to use the telnet command line in Labview

    Hi, someone can help me, I need to use a Telnet session in Labview but without using the http protocol, in this application I can only access the Telnet session using command line, here is an example of how I can access:
    From my computer, click on Start, then Run and then type in CMD.
    In the command line enter “telnet 192.168.0.1 5454” (without the quote marks) to bring up a blank DOS screen with a blinking cursor.
    Type “AT” and press the ENTER key, you should receive an “OK” response.
    Type in capital letters “AT+CMAR=1234” (without the quote marks)

    I had a similar situation and here is what I did...
    In MAX (Measurement and Automation eXplorer)
    Select Devices and Interfaces
    Select VISA TCP/IP Resources
    Create a new resource
    Select Manual Entry of Raw Socket
    Enter the IP address and port (23 is the standard telnet port)
    Give it a name. (VISA Ailas)
    Now this "Device" will show up in the VISA drop down just like any other VISA device.
    Use the VISA read and write just like you were communicating through a com port.
    Since Telnet does not have a stop bit like serial, make sure you enable the termination character.
    On your VISA reads set the number of characters to a big number, then VISA will read until it gets the termination character.
    See my attached snippet of my Telnet read vi
    Message Edited by RTSLVU on 06-16-2010 01:49 PM
    Message Edited by RTSLVU on 06-16-2010 01:50 PM
    Attachments:
    telnet.png ‏40 KB
    max1.png ‏33 KB
    max2.png ‏31 KB

  • XSQL DTD, XSQL command line, XSL parameters

    I have three quick XSQL questions:
    1. Is there a DTD available for XSQL? I'd like to feed it to Emacs' PSGML mode (http://www.lysator.liu.se/projects/about_psgml.html). What do you other Emacsers use to edit XSQL and XSL files?
    2. XSQL is working fine under Apache/jserv, but the command line isn't finding my DB connections as defined in XSQLConfig.xml:
    XSQL-004: Could not acquire a database connection named: lcbean@isis
    Does this mean XSQL couldn't find the connection description, or couldn't connect to it after finding it? It does use CLASSPATH to locate XSQLConfig.xml, right?
    3. I'm trying to use parameters in an XSL stylesheet as follows:
    <html xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xsl:version="1.0">
    <xsl:param name="store_code" select="'999'"/>
    <head><title>Test</title></head>
    <body><p><xsl:value-of select="$store_code"/></p></body>
    </html>
    But I keep getting:
    XSL-1031: Variable not defined: 'store_code'
    What am I missing?
    null

    [list=1]
    [*]No. Since XSQL action elements are allowed to appear anywhere in any well-formed XML document, you cannot really describe this in a DTD.
    [*]This means you put a connection="lcbean@isis" attribute on the document element of your XSQL page, but that it could not find a <connectiondef> for that name in XSQLConfig.xml (which is found successfully if it got this far!).
    [*] See Section 11.5 in the XSLT 1.0 specification. <xsl:param> must appear immediately at the top of a template before any literal result elements. This means that <xsl:param> cannot be used in a "simple-form" stylesheet. You can either use <xsl:variable> instead, or you'll have to change to the full-form of the <xsl:stylesheet> and place the <xsl:param> at the top-level of the stylesheet, outside of any <xsl:template>.
    [list]

  • Find unowned files via command line?

    I'm interested in making a list of files not owned by any package and sending it to a text file I can review. I found this thread, which suggests pacpal (link appears to be broken now) and this script. I could try the script, but I noted from a bit back that the Arch news page listed a one-liner for finding unowned packages in the preparation of moving /usr/lib -> /lib:
    $ find /bin /sbin /usr/sbin -exec pacman -Qo -- {} + >/dev/null
    Here's the script linked to above, for reference:
    #!/bin/bash
    # Utility to generate a list of all files that are not part of a package
    # Author: Spider.007 / Sjon
    TMPDIR=`mktemp -d`
    FILTER=$(sed '1,/^## FILTER/d' $0 | tr '\n' '|')
    FILTER=${FILTER%|}
    cd $TMPDIR
    find /bin /boot /etc /lib /opt /sbin /usr /var | sort -u > full
    pacman -Ql | tee owned_full | cut -d' ' -f2- | sed 's/\/$//' | sort -u > owned
    grep -Ev "^($FILTER)" owned > owned- && mv owned- owned
    echo -e '\033[1mOwned, but not found:\033[0m'
    comm -13 full owned | while read entry
    do
    echo [`grep --max-count=1 $entry owned_full|cut -d' ' -f1`] $entry
    done | sort
    grep -Ev "^($FILTER)" full > full- && mv full- full
    echo -e '\n\033[1mFound, but not owned:\033[0m'
    comm -23 full owned
    rm $TMPDIR/{full,owned,owned_full} && rmdir $TMPDIR
    exit $?
    ## FILTERED FILES / PATHS ##
    /boot/grub
    /dev
    /etc/X11/xdm/authdir
    /home
    /media
    /mnt
    /proc
    /root
    /srv
    /sys
    /tmp
    /var/abs
    /var/cache
    /var/games
    /var/log
    /var/lib/pacman
    /var/lib/mysql
    /var/run
    /var/tmp
    Is there any reason to use a script like the above compared to such a simple script, which appears to just be spitting a list of all files in /bin, /urs/sbin, and /sbin into `pacman -Qo`. What I can't figure out is what the end of the command does (the `-- {} + > /dev/null`). From various attempts to pipe that output into a text file, I've noticed that it just gets filled with the owned files... so I'm guessing something in there is filtering so that unowned get printed to stdout and owned go to /dev/null. I can't figure out how to redirect the unowned to a text file.
    Thanks for any suggestions.

    alphaniner wrote:"--" is often used to tell the program there are no more options. I didn't see it in the manpage, but that's the case with pacman as well.* The "{} +" is part of the find -exec argument, search for {} in the find manpage.
    Ah. Thanks for that. I'd been googling things like " linux command line '-- {}'" and not getting any hits. I combined the arguments incorrectly! Thanks for letting me know that this was part of `find`, as I was also looking in the man page for pacman wrongly.
    alphaniner wrote:
    The >/dev/null is redirecting stdout (list of owned files) to oblivion. The list of unowned files (and other errors) goes to stderr. To redirect stderr you use "2>" so try
    find /bin /sbin /usr/sbin -exec pacman -Qo -- {} + >/dev/null 2>unowned_files
    Perfect, and now I understand how `pacman -Qo` is working: it sends the answer to stdout if it knows the answer and to stderr if it doesn't find a hit. Thanks!

  • How can I open a PDF file and enter a word in the Find field from the command line?

    Hi,
    I want to use a PDF file as the help file of another program.
    I have found somewhere an incomplete description of the command line parameters of Acrobat Reader.
    It described how to open a file and jump to its given page.
    I have written the following batch file based on that.
    rem Open pdf (prm1) with Acrobat reader at given page (prm2)
    "%adobe_rdr%\AcroRd32.exe" /N "zoom=73&page=%2=OpenActions" %1
    The following batch file opens the search dialog:
    rem Open pdf (prm1) with Acrobat reader
    rem and search for something (prm2)
    "%adobe_rdr%\AcroRd32.exe" /N "zoom=73&navpanes=1=OpenActions&search=%2" %1
    I need the simple find field instead of the complicated search window.
    Regards
                   Ferenc

    Not possible.

  • What is the command line equivalent of the *compress* tool in *Finder*

    I have an automatic build setup for our iPhone Apps. The one issue i face everytime is that the zip file that i create in the build using zip command is always rejected by iTunesConnect server as invalid binary. When i compress the .APP folder manually using Compress from the *Finder menu*, that archive is always accepted. The size of the zip files generated is slightly different.
    Does anyone know what would be the command line equivalent of the Compress used by the Finder ? I want to automate this process so that someone does not have to do a manual compress before uploading it to iTunesConnect.
    Thanks in advance,
    -TRS

    a Mac user wrote:
    That is odd, are you sure you are using the command line correctly then? Because zip-ing from the command line should be the exact same one as from the utility in OS X.
    It's not the same, though. As someone else pointed out, the Finder uses a program called "Archive Utility.app", found in "/System/Library/CoreServices". A quick look at the binary shows that it uses the following Unix command line apps:
    /usr/bin/macbinary
    /usr/bin/file
    /usr/bin/tar
    /usr/bin/applesingle
    /usr/bin/binhex
    /usr/bin/ditto
    /usr/bin/gunzip
    /usr/bin/bunzip2
    /usr/bin/uudecode
    /usr/bin/atos
    I would have to look into how iTunesConnect accepts files.
    iPhone apps are signed binaries, so if one byte is different when they arrive at the app store, they won't be accepted. The command line zip leaves out some information and so the package appears to have been tampered with and they're rejected.
    charlie

  • Where do I find the Command-line Adobe AIR Developer Tool?

    Hi,
    Where do I find the Command-line Adobe AIR Developer Tool? (ADT)
    I downloaded the AIR 4 SDK, but can't find it.
    Thanks

    Yes, as Colin stated, FB / FlashPro calls it with app-xml and some other (device orientation, width, height etc) parameters.
    // chall3ng3r //

  • IEAK IE9 msi - Can not find command line to make install process passive with a reboot prompt

    hey all, this seems to be something simple and I can not get it to work the way intended.   I want IE9 installer to install passively and then prompt for reboot, that's it.  
    I have tried using the switches for the standard exe from Microsoft but nothing allows for passive and prompt for reboot
    I have now also downloaded and used IEAK and then created msi installs and selected the passive and prompt for reboot options which does not make the installer do that actual behavior by default.  
    So I have now actually began trying various commands with the IEAK msi files, none of which are making the behavior I desire happen, passive with prompt for reboot.
    Can anyone suggest a proper command line for this?
    I have essentially tried these on the different installers I have built, and sometimes entered the /passive on full installers:
    msiexec.exe filename /promptrestart
    msiexec.exe filename REBOOTPROMPT=""

    Hi,
    I am afraid when using /passive options together, there would be no promote when installing.
    See the instruction for /passive here:
    The installer displays a progress bar to the user that indicates that an installation is in progress but no prompts or error messages are displayed to the user. The user cannot cancel the installation. Use the
    /norestart or /forcerestart standard command-line options to control reboots.
    If no reboot option is specified, the installer restarts the computer whenever necessary
    without displaying any prompt or warning to the user.
    Based on my unserstanding, when using this command option, we can only choose restart or not with the
    /norestart or /forcerestart standard command-line options
    If /passive is in use, then the promote would be expected not to work. So if we would like to force install IE, then we might better schedule the install time or restart out of the work hours.
    Best regards
    Michael Shao
    TechNet Community Support

  • Why can I not find "command line options" in FF help?

    I can't find any information in the knowledge base on windows command line options for Firefox. I actually had to go to "http://kb.mozillazine.org/Command_line_arguments" to find this information. This seems like a fairly common piece of information FF users would want to know. At least, it's not extraordinarily rare.

    You have out-of-date plugins with known security issues. You should update them.
    * Adobe Shockwave for Director Netscape plug-in, version 10.3
    * Next Generation Java Plug-in 1.6.0_21 for Mozilla browsers (new security update releases 10-12-2010)
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update Java:'''
    #* Download and update instructions: https://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox
    #* Removing old versions: http://www.java.com/en/download/faq/remove_olderversions.xml
    #* After the installation, start Firefox and check your version again.

  • How to enable telemetry logs and where can i find the command line for sun

    Hi i tried creating the telemetry logs directory but the logs are not being populated. i created the following directory:-
    /opt/SUNWmsgsr/data/telemetry/imap/usersns1
    where usersns1 is the userid.
    Also pl. tell me where can i get the command list for sun one messaging server to use the command line utility to list, delete mailboxes. also can i search for all the mailboxes under one domain name. if yes then which command i have to use.
    thanks in advance.

    Hi,
    Hi i tried creating the telemetry logs directory but
    the logs are not being populated. i created the
    following directory:-
    /opt/SUNWmsgsr/data/telemetry/imap/usersns1
    where usersns1 is the userid.Make sure the permissions (ownership) on the user directory and the sub directory match those that messaging server uses - by default mailsrv:mail. This is the most common cause of the telemetry data not being created. The other thing to verify is that the user's account isn't stored as user@domain, otherwise you may need to create the directory as the entire user@domain (try both just to be sure).
    Also pl. tell me where can i get the command list
    for sun one messaging server to use the command line
    utility to list, delete mailboxes. also can i search
    for all the mailboxes under one domain name. if yes
    then which command i have to use.The Messaging Server reference guide is a good place to start (lists all the command-line utilities/flags and what-not):
    http://docs.sun.com/app/docs/doc/819-4429?l=en
    The mboxutil command is used to list/create/delete mailboxes and you can use a pattern to only list those mailboxes in a specific domain.
    Regards,
    Shane.
    thanks in advance.

  • I can't find a class to run command line stuff...

    Does J2SE have the capability to run command line files/executable files? I need to run some things from command line on my local machine. This ap will be swing based. Thanks for any insight.
    nick

    that is what I need. I did not think to look there. Thanks so much.
    Nick

  • Command line - how find name of AD

    I have inherited a MacOSX 10.4.7 server that is bound to a Windows2003 AD system.
    What is the command line enquiry to type on the Mac to discover the name of the AD server it is bound to.
    TIA

    Have you configured the AD plug-in yourself? Generally all you specify is a domain. The plug-in uses AD DNS to get the global catalog or nearest domain controller. It doesn't bind to a specific server... it binds to AD as a whole. It will carry out transactions with the server it is told is its nearest PDC. It's up to either the GC or other AD DNS service records to tell it the info it wants.
    Having said that, you can configure the "prefer this domain controller" option in the plug-in to try and make it go to a specific server each time.

  • Compression via command line vs finder

    I have an executable that is stored as a package file, or folder.  When I right-click on the file and compress it, I end up with a zip file that decompresses to the same thing.  So far so good.  I've been unable to do the same thing via the command line.  I tried zip, which ends up saving the contents of the package file, but does not recreate the executable when unzipped.  I also tried gzip, but didn't get even that far.  Trying to create a tar.gz file didn't work either.
    Is there a way to do this?

    Yes, ditto is the right tool as zip does not support resource forks
    "Support for some Mac OS features in the Unix Mac OS X port, such as resource forks, is expected in the next zip release"
    Ditto supports OS X:
    "ditto will preserve resource forks and HFS meta-data information when copying unless instructed otherwise using --norsrc Similarly, ditto will preserve extended attributes and Access Control Lists (ACLs) unless --noextattr or --noacl is passed."
    Also, tar should have worked.

  • Problem using extension manager CS5 with command line

    Hi All,
    I had posted my question here : http://forums.adobe.com/message/4695419#4695419, but was advised to do so here as well..
    I have a requirement to get the path of all the installed Extension Managers on any Windows system for the purpose of installing an extension.. I thought, there would be no problem in getting the path from the registry. There was no problem in Win XP, but the same does not work for Win 7.. I googled, and found alternate ways to get the path.
    Here is the link : http://forums.adobe.com/thread/851359. I followed the instructions in this post, but failed to get this working for CS5 as mentioned in my previous thread... No problem for CS5.1 and CS6.. Why is that?
    I want to get this working for CS5, CS5.1, CS6... How can I get the path of all the Extension Manager versions installed on a Windows system?
    Please refer to the following screenshots to get a better understanding of my problem,
    I created a jsx file named "Result.jsx", which I saved in my D drive, with the following code,
    resultFile = new File("D:/result.log");
    resultFile.open("w");
    resultFile.write(BridgeTalk.__diagnostics__);
    resultFile.close();
    If I run this directly from ESTK CS5, there is no problem, and I get the result.log file. I tried to execute this script via command line as shown in the screenshot,
    On executing the above, I got the following error,
    What is going wrong?
    Please help!

    I am sorry for the poor documentation of Extension Manager which causes you so much trouble.
    1. You can use BridgeTalk API to ask specific version of Extension Manager to do something. There is sample in packaging_extension.pdf about this. You don't need to know the installation path of Extension Manager. One thing to note is that the value of bt.target is version specific, i.e. "exman-5.0", "exman-5.5" send this message to different version of Extension Manager, so you can change this value to install/enable/disable/remove extensions using different version of Extension Manager. More detailed documentation of BridgeTalk can be found by clicking "Help" menu then clicking "Javascript Tools Guide CS5" in "Adobe ExtendScript Toolkit CS5".
    2. Specific version of Extension Manager only manage extensions for corresponding version of product. You should use Extension Manager CS5 to install extensions for Photoshop CS5. The reason that the extension you installed for Photoshop CS5.1 using Extension Manager CS5.5 is displayed for Photoshop CS5 in Extension Manager CS5 is that two versions of Photoshop specified the same directory for Extension Manager to manage extensions. This is a defect and will cause some problems if multiple versions of Photoshop co-existed in one machine. But "to find  previous (CS5) extension manager and to enable it" should work for you, I guess you use command line to enable it and specify wrong product name (see #3) so that it doesn't work.
    3. When using command line, you should specify "product" attribute with the name displayed at the left panel of Extension Manager. So "Photoshop CS5 32" is correct. Remember to enclose it with double quote because of existence of space character.
    4. As above mentioned, use display name of Photoshop, and call proper version of Extension Manager by BridgeTalk.

Maybe you are looking for

  • Error MSB3073: The command exited with code -1

    I am getting this error while deploying the biztalk project from visual studio using Deployment Framework for Biztalk (BTDF). Please guide me what needs to be done. Here's the code :- <?xml version="1.0" encoding="utf-8"?> <!-- Deployment Framework f

  • App Store showing blank pages in Yosemite

    After my update to Yosemite the AppStore behaves severely crippled. The main "Featured" , "Top Charts", "Updates" and "Purchases" page work normal, however the "Categories" page only shows the category titles, and worse: going into any detail page fo

  • Wireless Headset

    Dear Friends, I need a Wireless Headset to make and receive VOIP calls (skype, ichat, SJphone, etc.) in my MacBook Pro 2.33 (MacOS 10.5.2)... At home I have a "GN Netcom GN 9330 USB wireless Headset" that is very good but it is not portable and needs

  • [svn:fx-trunk] 10545: Make DataGrid smarter about when and how to calculate the modulefactory for its renderers when using embedded fonts

    Revision: 10545 Author:   [email protected] Date:     2009-09-23 13:33:21 -0700 (Wed, 23 Sep 2009) Log Message: Make DataGrid smarter about when and how to calculate the modulefactory for its renderers when using embedded fonts QE Notes: 2 Mustella t

  • Workcenter with no of capacity 10

    Hi I have one work center with no of capacity 10 i have cycle time for one operation with say only no of capacity as 1 = 15 sec do i have to change cycle time also when i am changing no of capacity from 1 to 10 I mean how the calculation would take p