Table of Contents

https://bencane.com/2014/06/06/8-tips-for-creating-better-bash-scripts/

remove old files

find /path/to/files* -mtime +5 -exec rm {} \;

Headline

Bash scripting cheatsheet

new bash Linux Cheatsheet Wallpaper

sed / awk / opkg

opkg list_installed | grep asterisk | awk '{print $1}' | sed 's/^/opkg install /' | sed 's/asterisk15/asterisk16/'