标签 mac os 下的文章 - 酷游博客
首页
关于
友链
Search
1
阿里的简历多久可以投递一次?次数多了有没有影响?可以同时进行吗?
45 阅读
2
Java中泛型的理解
40 阅读
3
Java 14 发布了,再也不怕 NullPointerException 了!
38 阅读
4
Java中的可变参数
37 阅读
5
该如何创建字符串,使用" "还是构造函数?
30 阅读
技术
登录
/
注册
找到
3
篇与
mac os
相关的结果
2025-01-22
Mac下使用tree命令
在Mac OSX 系统默认是没有类似windows中的 tree命令,找到一条比较有意思的命令可以实现: find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g' 为了方便使用,写一个alias 到~/.profile里: alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'" 写完之后记得source ~/.profile噢
技术
# mac os
酷游
1月22日
0
8
0
2025-01-22
mac下安装wget命令
brew install wget 或者 curl -O http://ftp.gnu.org/gnu/wget/wget-1.13.4.tar.gz tar xzvf wget-1.13.4.tar.gz cd wget-1.13.4 ./configure --with-ssl=openssl sudo make sudo make install which wget #Should output: /usr/local/bin/wget
技术
# mac os
酷游
1月22日
0
18
0
2025-01-22
Mac OS X中设置VIM语法高亮
默认情况下,使用vim打开文本文件都是灰蒙蒙的一片,当我们要在其中查询某个字符的时候也看的不清楚。但是,有办法解决这种困境。 主要是修改~/.vimrc文件 文件内容如下: set ai " auto indenting set history=100 " keep 100 lines of history set ruler " show the cursor position syntax on " syntax highlighting set hlsearch " highlight the last searched term filetype plugin on " use the file type plugins " When editing a file, always jump to the last cursor position autocmd BufReadPost * \ if ! exists("g:leave_my_cursor_position_alone") | \ if line("'\"") > 0 && line ("'\"")
技术
# mac os
酷游
1月22日
0
23
0
易航博客