Linux CLI - Cron and Scheduling
How can you schedule multiple commands to run once at 10 PM using
at?at?atat.echo -e "cd /tmp\nls -l" | at 22:00 uses echo -e with newline escape to send two commands correctly. echo "cd /tmp; ls -l" | at 22:00 uses semicolon but without newline, which may work but is less reliable. The other options misuse syntax by passing commands as arguments or separating incorrectly.at = B [OK]at [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions