xargs = execute command [can be added after other command] (usage: find *.deb -mmin +10 | sudo xargs rm -r) <= sudo was added inbeforehand xargs in this example (this example deletes all *deb files found that are older than 10 minutes [the -r after the rm in this example HAS TO BE LOWERCASE !!! if it is Uppercase it WON'T WORK !!!]
Append current time to file (to make it unique)= (Usage: append=`date +%r | cut -d " " -f 1` ) [this for example will add the time after the files extionsion]
uiopen URL = opening an URL from Shell and passing it on to safari/other app (Usage: uiopen google.com) [FOR IOS: you can also use other apps that support the open-in URL scheme, such as: wedict://WORDTOTRANSLATE, idownload://filepath/url]
Keep programs running = (will keep progrs running even if Terminal is closed) (Usage: COMMAND &) ["&" at the end will keep commands running, and they even survive a respring, sadly SBLaunched apps don't work with this, terminal only]
find -maxdepth 1 -type f -empty -print0|xargs rm This command will delete any 0 byte file in the directory you "cd" into. (command was modified by me to work)
find /var/mobile -maxdepth 2 -name "$x" >> "$x".txt < "find /var/mobile -maxdepth 2 -name "$x" >> "$x".txt" is in this case the command. It can be replaced with any command that contains a variable
done < /var/mobile/names.txt < the "names.txt" is in this case the file containing the lines which will replace the x variable in each new run of the script