Skip to content
  • 0 Votes
    5 Posts
    0 Views
    surefire@infosec.exchangeS
    @kagan Without seeing the script itself, two thoughts:Make sure the script starts with a #! line, since that tells the OS what kind of script it is.Since you mentioned being able to touch a file, write to a log file to see exactly where it is hanging:#!/bin/bashecho 0 >> mylogfile(first line of code here)echo 1 >> mylogfile(second line of code here)echo 2 >> mylogfile(third line of code here)...