
Mac
ronal7do
这个作者很懒,什么都没留下…
展开
-
Xcode添加头文件路径和链接库文件
Xcode添加头文件路径和链接库文件的方法原创 2017-06-21 17:35:20 · 35901 阅读 · 2 评论 -
Mac 常用的免费解压工具(zip,rar,7z)
zip/unzip Mac自带解压缩工具,可解压缩zip压缩包。 zip压缩: 在文件夹下创建如下文件 > ls *.txt 1.txt 2.txt 3.txt 4.txt执行命令> zip -r txt.zip *.txt生成压缩包 > ls *.zip txt.zip查看压缩包内的文件,有两种方法,用zip/和unzip都可...原创 2018-09-02 14:34:03 · 23319 阅读 · 1 评论 -
mac下使用命令拷贝目录下文件路径
// 创建脚本vim cpwd.sh#!/bin/bashdir=$(pwd)path=${dir}/$1echo ${path} | pbcopyecho ${path}// 赋予执行权限chmod +x cpwd.sh// 拷贝脚本到系统目录cp cpwd.sh /usr/local/bin/ // 使用$ cpwd.sh input.mp4 /Users/...原创 2019-08-20 23:06:15 · 2837 阅读 · 0 评论