Atilla Tanrikulu

I am an experienced software engineer and architect living in Germany. I’m passionate about distributed scalable enterprise web-based microservices/applications and delivering great user experiences. I have created some amazing enterprise-level applications that many people have used and hopefully enjoyed.

Articles

Java Quick Reference Apache Kafka Tutorial Guvenli Kod Gelistirme Making an Enterprise Scale Angular Project Step by Step Nightly SQL Server Database Backup with command line batch file and windows scheduler AOP Framework without proxy pattern IdentityServer Nedir Middleware Pattern With Csharp And Javascript Docker most used commands Online Proje Dokumantasyonu, Docker, Nginx, mdwiki How to use Github Pages for static websites Inheritance with JavaScript, EC6 (ECMAScript 6, ECMAScript 2015) Object oriented javascript and Inheritance Singleton Pattern with Javascript Factory Pattern with Javascript Open terminal here mac os x service IdentityServer4-Angular-6-integration JMater notlari, kurulum ve kullanim Learn Jekyll in 12 Steps Make Mac Application with Automater from sh script Make spotlight index markdown or code files OAuth 2.0 Nedir (RFC6749) Using Custom CSS and Custom JavaScript to an Angular Project Cross Platform Desktop Application With .Net Core 2x and Angular 6x front-end projects with nodejs gulp bower yeoman and angularjs Host Asp.Net Core on Linux with Apache Redis kurulumu ve ayarlari Useful Mac OS Apps Choosing internet connection on multiple interface windows Name Server Kurulumu How to define domain name for your dynamic IP SQL table data compare, and prepare insert satements Useful Git Commands TFS ile Otomatik deployment yapmak Spring Boot Tutorial Sql server icin maliyetli sorgularin tespit edilmesi Arama Motoru Optimizasyonu (SEO) My installed mac apps

Open terminal here with Mac OS X service

Open terminal here solution

Making service/context menu on Mac OS with

  • OS X Services available in contextual menus, for instance when you right-click on a file or folder in the Finder.
  • It’s easy to create your own service commands using any shell or scripting commands.

How to make open terminal here in 4 steps

  • Step-1 Launch Automator and when asked to choose a type for your document select “Service”.

1.png

  • Step-2 From the library on the left select “Run Shell Script” action.

2.png

  • Step-3 Set the following Services parameters:
Service receives: Folders
In: Finder.app
Shell: /bin/bash

Paste the below scritp

open -a /Applications/Utilities/Terminal.app $1

3.png

The Services files you create are stored in the following directory:

~/Library/Services/

Other Context menu or Mac OS X services implementations

1- Open with wine (For windows executables)

/usr/local/bin/wine $1 >& /dev/null &

2- New text file here

cd $1
touch NewTextFile.txt
open -a /Applications/TextEdit.app NewTextFile.txt

3- Edit with TextEdit

open -a /Applications/TextEdit.app $1
  • Open live-serve here (it opens terminal and show command result)
  • Jekyll serve here (it opens terminal and show command result)
  • Git pull (it opens terminal and show command result)
  • Git push (it opens terminal and show command result)

4.png

Download services

Date: 2017-10-23 10:20:00 +0000