Suppose I have a script with two commands
#!/bin/bash
sleep 60
echo a
and suppose I want to skip the first line and ask the shell to start the second line directly, what should I do? Ctrl+c is not what I want as it quits the whole script, including the second line.