zoukankan      html  css  js  c++  java
  • Mac OS X 在Finder新建文本文件

    Automator 新建一个 Application

    添加一个动作 "Run AppleScript"

    代码如下
    on run {input, parameters}
    
    	tell application "Finder"
    	set selection to make new file at (get insertion location)
    	end tell
    
    	return input
    end run

    保存到 "应用程序"文件夹, 名字姑且叫 "New File.app" 吧.

    Finder 工具栏右键, 自定义, 然后把 New File.app 拖上去, 大功告成,

    需要时候点击一下, 即可在当前文件夹生成一个空文件.
  • 相关阅读:
    XML和解析
    代理模式
    net-snmp配置文件snmp.conf
    tomcat-在eclispe中配置远程调试
    tomcat-在eclipse中配置tomcat容器的内存
    web项目跨域访问
    STS-创建spring配置文件
    STS-新建mvc工程--helloworld
    STS-新建spring mvc项目
    Eclipse-安装Spring Tool Suit 插件
  • 原文地址:https://www.cnblogs.com/Rinpe/p/6018561.html
Copyright © 2011-2022 走看看