Posted 2021-08-11NoteCommandLineTools reinstallxcode-select --print-path# in my case /Library/Developer/CommandLineTools# the next line deletes the path returned by the command abovesudo rm -rf $(xcode-select --print-path)# install them (again) if you don't get a default installation promptxcode-select --install
Posted 2019-11-13Notelinux软链接创建、删除和更新创建ln -s 【目标目录】 【软链接地址】ln -s /var/www/test test 软链接创建需要同级目录下没有同名的文件 删除rm -rf 【软链接地址】rm -rf test 软链接地址最后不能含有“/”,当含有“/”时,删除的是软链接目标目录下的资源,而不是软链接本身 修改ln -snf 【新目标目录】 【软链接地址】ln -snf /var/www text 这里修改是指修改软链接的目标目录
Posted 2018-08-08Notemac apache start, stop, restartsudo apachectl startsudo apachectl stopsudo apachectl restart
Posted 2017-08-11ManualTerminal 几个快捷键将光标移动到行首ctrl + a 将光标移动到行尾ctrl + e 清除屏幕ctrl + l 搜索以前使用命令ctrl + r 清除当前行ctrl + u 清除至当前行尾ctrl + k 单词为单位移动option + 方向键
Posted 2017-06-12Manuallinux常用命令文件、目录类cd # 返回 home 目录(相当于cd ~)cd .. # 返回上一级目录cd - # 返回上一次所在目录,并显示其目录名cd xxx # 进入到指定目录xxxpwd # 显示当前目录的绝对路径ls -l # 列出文件的详细信息,相当于(ll)ls | grep "xxx" # 列出包含 "xxx" 关键字的文件mkdir dir # 创建一个目录mkdir -p dir/dir # 创建多级目录mkdir -m 777 dir # 创建权限为 777 的目录touch file # 创建新的空文件rmdir dir # 删除空目录rmdir -p dir/bin # 删除子空目录 bin 和其父空目录 dirrm -rf dir/bin # 删除一个目录中的一个或多个文件或目录(慎用)rm -rf xxx *.log # 删除当前目录下所有 ".log" 的文件(慎用)find fileName -name *.txt | xargs rm -rf # 将查找出来的文件全部删除(慎用)cp file dir/file # 将文件拷贝到另一文件中cp -R dir1 dir2 # 拷贝多个目录 (含子目录) 到指定目录mv dir1 dir2 # 将文件或目录重新命名,或者将文件从一个目录移到另一个目录中Read more