Per provare i componenti aggiuntivi disponibili in questo sito scarica Mozilla Firefox, un modo veloce e gratuito per navigare sul Web.
ChiudiBenvenuto in Firefox Add-ons.
Scegli tra migliaia di funzionalità aggiuntive e stili per rendere Firefox veramente tuo.
ChiudiRecensioni per The Unix and Linux Forums (unix.com)
4 recensioni per questo componente aggiuntivo
Assegnate 3 su 5 stelle
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
Assegnate 5 su 5 stelle
Excellent feature, I use to find many answers in unix.com, now I have it available in my FF, lovely :)
Questa recensione riguarda una versione precedente (20100215) del componente aggiuntivo.Assegnate 5 su 5 stelle
Very impressed, works first-time. Did exactly what it said on the tin.
Questa recensione riguarda una versione precedente (20100215) del componente aggiuntivo.Assegnate 5 su 5 stelle
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!
Per creare una tua raccolta devi avere un account per Mozilla Add-ons.