How can I run command every twelve hours every day? Tried this not working :
/12 * * * * * mycommand
0 0,12 * * * yourcommand
executes your command at 0 and at 12 o'clock.
*/12 * * * * your command
would execute your command every 12 minutes each hour.