對 The Unix and Linux Forums (unix.com) 的評論
4 篇附加元件的評論
評分: 3 / 5 顆星
fileservice Platzverbrauch:
#Aufgabe: fileservice
echo "Sollen links oder Platzverbrauch gewaehlt werden? links oder Platz"
    read ENTSCHEIDUNG
    
    if [ "$ENTSCHEIDUNG" == "links"  ]; then
		echo "Sollen Hardlinks erstellt werden? ja oder nein"
		read ENTSCHEIDUNG
    
		if [ "$ENTSCHEIDUNG" == "ja"  ]; then
	
			mkdir hardlinks
			cd hardlinks
			ln ../"$1"
    
		else
			echo "Keine Aenderung vorgenommen!"
		fi
	
		echo "Sollen Symbolische Links erstellt werden? ja oder nein"
		read ENTSCHEIDUNG
    
		if [ "$ENTSCHEIDUNG" == "ja"  ]; then
	
			mkdir ../symlinks
			cd ../symlinks
			ln -s ../"$1"
	
		else
			echo "Keine Aenderung vorgenommen!"
		fi
	
	else
	
		echo "Soll der Platzverbrauch berechnet werden? ja oder nein"
		read ENTSCHEIDUNG
    
		if [ "$ENTSCHEIDUNG" == "ja"  ]; then
	
			ls -s "$1" | head -n1
	
		else
			echo "Keine Aenderung vorgenommen!"
		fi 
	fi
exit
評分: 5 / 5 顆星
Excellent feature, I use to find many answers in unix.com, now I have it available in my FF, lovely :)
此意見為舊版本 (20100215) 的附加元件。評分: 5 / 5 顆星
Very impressed, works first-time. Did exactly what it said on the tin.
此意見為舊版本 (20100215) 的附加元件。評分: 5 / 5 顆星
Hat's off to fpmurphy for developing this.  I hope you will do the same for a man page search in the future!
Great job!
請選擇一個原因:
如果您要新增自己的收藏集,你必須先申請一個 Mozilla 附加元件的帳號。
 附加元件
    附加元件
 
    