⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fixperm

📁 smtp客户端工具源代码。
💻
字号:
#!/bin/sh####  fixperm -- Fix File Permission inside Sourcetree##  Copyright (c) Ralf S. Engelschall, All Rights Reserved.##for p in $*; do    for file in `find $p -depth -print`; do    	if [ -f $file ]; then    	    if [ -x $file ]; then    	        echo "    $file (FILE/EXEC)"    			chmod 775 $file				chown rse.users $file    		else    	        echo "    $file (FILE/REGULAR)"    			chmod 664 $file				chown rse.users $file    		fi    		continue    	fi    	if [ -d $file ]; then    	    echo "    $file (DIR)"    		chmod 775 $file		    chown rse.users $file    		continue    	fi    	echo "    $file (UNKNOWN)"    donedone##EOF##

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -