Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Mac OSX Terminal – Create Desktop Shortcuts/Symlink

Posted on May 26, 2016May 26, 2016 By David Kittell

Coming from Windows I sometimes still have the desire or need for a desktop shortcut/symlink.

There are two easy options for this

  1. Right click the application, select “Make Alias” and drag that alias to the desktop and potentially rename it at one point or the other.
  2. Open Terminal (Applications – Utilities) and run a command similar to below, the advantage of running the terminal strings below is that you can easily choose the location and name of the shortcut/symlink
ln -s /Applications/Utilities/Terminal.app ~/Desktop/Terminal
ln -s /Applications/VNC\ Viewer.app ~/Desktop/VNC
ln -s /Applications/Microsoft\ Outlook.app ~/Desktop/Outlook
ln -s /Applications/Skype.app ~/Desktop/Skype
ln -s /Applications/Mail.app ~/Desktop/Email
ln -s /Applications/Microsoft\ Excel.app ~/Desktop/Excel

All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

CentOS Code Fedora Mac OS X Shell Mac OSX Red Hat Ubuntu UNIX UNIX Shell Scripts

Post navigation

Previous post
Next post

Related Posts

Change Computer Name

Posted on July 18, 2013October 26, 2015

Option Explicit Set ws = WScript.CreateObject("WScript.Shell") Dim ws, t, p1, p2, n, cn, vbdefaultbutton Dim itemtype p1 = "HKLMSYSTEMCurrentControlSetControlComputerNameComputerName" n = ws.RegRead(p1 & "ComputerName") t = "Change Computer Name" cn = InputBox("Type new Name and click OK", t, n) If cn <> "" Then ws.RegWrite p1 & "ComputerName", cn End…

Read More

Reorganize Directory By File Count

Posted on May 26, 2020August 17, 2024

$filesperfolder = 1000 $sourcePath = "c:\Pictures" $destPath = "c:\Pictures\imgOrg" $i = 0 $folderNum = 1 if (!(Test-Path "$destPath")) { New-Item -Path "$destPath" -Type Directory -Force } Get-ChildItem "$sourcePath\*.jpg" | % { New-Item -Path ($destPath + "\" + $folderNum) -Type Directory -Force Move-Item $_ ($destPath + "\" + $folderNum) -Verbose $i++…

Read More

Raspberry Pi – Install Firefox and Thunderbird on Raspbian

Posted on April 9, 2018

sudo apt install dirmngr echo "deb http://ppa.launchpad.net/ubuntu-mozilla-security/ppa/ubuntu trusty main" | sudo tee /etc/apt/sources.list.d/firefox.list echo "deb-src http://ppa.launchpad.net/ubuntu-mozilla-security/ppa/ubuntu trusty main" | sudo tee /etc/apt/sources.list.d/firefox-source.list echo "deb http://ppa.launchpad.net/mozillateam/thunderbird-next/ubuntu trusty main" | sudo tee /etc/apt/sources.list.d/thunderbird.list echo "deb-src http://ppa.launchpad.net/mozillateam/thunderbird-next/ubuntu trusty main" | sudo tee /etc/apt/sources.list.d/thunderbird-source.list sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys A6DCF7707EBC211F sudo apt-key adv…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes