Son güncellemesi Aralık 2006'da yapılan, Advanced Bash-Scripting Guide, güncel olmasının yanı sıra, Bash ile yazılan ilginç örneklerle de "state of the art" niteliğinde bir kılavuz.
Mortgage sistemine yapılacak aylık ödemelerden, güvenli dosya silmeye, dosya içinde dosya sistemi yaratmaktan, exec kullanarak stdin yönlendirmeye kadar, pek çok alanda dudak uçuklatıcı örneklere haiz bu klavuzu, çeşitli formatlarda diskinize indirmek isterseniz burayı kullanın.
Kaynak : Fazlamesai
Kaynak : Fazlamesai
:)
#!/bin/bash
# Proper header for a Bash script.
# Cleanup, version 2
# Run as root, of course.
# Insert code here to print error message and exit if not root.
LOG_DIR=/var/log
# Variables are better than hard-coded values.
cd $LOG_DIR
cat /dev/null > messages
cat /dev/null > wtmpecho "Logs cleaned up."
exit # The right and proper method of "exiting" from a script.