Complete the command to check the current patch level on a SCADA system.
scada-patch-manager --[1]The status option shows the current patch level and installed patches on the SCADA system.
Complete the command to apply a patch file named 'patch123.scd'.
scada-patch-manager --[1] patch123.scdThe install option applies the specified patch file to the SCADA system.
Fix the error in the command to rollback the last patch.
scada-patch-manager --[1] lastThe rollback option is used to undo the last applied patch.
Fill both blanks to create a command that lists all available patches and filters for critical ones.
scada-patch-manager --[1] | grep [2]
The list option shows all patches, and grep critical filters to show only critical patches.
Fill all three blanks to write a command that verifies a patch file, installs it if valid, and then checks the patch status.
scada-patch-manager --[1] patch123.scd && scada-patch-manager --[2] patch123.scd && scada-patch-manager --[3]
First, verify checks the patch file integrity. Then install applies it. Finally, status confirms the patch is installed.