根据视窗和Linux线程中,你认为哪些命令最有用Mac OS X 服务器(或客户端)?
答案1
say "some text"
著名用途让人们重返公寓,say
获取您的论点并通过音频输出设备大声朗读。
答案2
pbpaste
并pbcopy
与粘贴板(又名剪贴板)进行交互。
例子:
# copies the directory listing
ls -l | pbcopy
# get pasteboard lines containing foo and save them in a_file
pbpaste | grep foo > a_file
我认为他们默认使用 macroman 编码,因此如果您想要 UTF-8(您想要的),您应该查看这些链接:
答案3
fs_usage
可让您监控文件系统活动。如果您想查看某个应用创建了哪些文件,此功能非常方便。请参阅http://rentzsch.com/macosx/fs_usageIntro了解更多解释。
答案4
从命令行,我喜欢具有以下功能:
创建并刻录“通用” CD/DVD:
$ mkisofs -allow-multidot -allow-leading-dots -d -hide-rr-moved \ -l -joliet-长-R -T -v \ -V 卷名称 -o 输出.iso 根目录-cd-dir/ $ hdiutil burn-noverifyburn 输出.iso
从 CD/DVD 创建 ISO 映像:
$ diskutil unmountDisk /dev/disk2s0 $ dd if=/dev/disk2s0 of=cdname.iso bs=32m
当我寻找 ldd 时可能会忘记 otool 命令:
$ alias ldd='printf "发送命令至 \'\''otool -L\'\'' --\n" && otool -L'
从命令行挂载磁盘映像:
$ hdid diskimage.dmg (或 .iso)
使用预览访问手册页:
$ man -t rsync | open -f -a /Applications/Preview.app