Recent content by let_s_begin

  1. L

    bash scripting question

    i was picking apart some bash scripts online to help me practice and learn more about bash. i encountered one script that had this ((count++)) towards the end of the script. from what i can tell this says to add to the variable. i was hoping for a better explanation about what it does, why its...
  2. L

    Basic Script

    Thanks that worked
  3. L

    Basic Script

    Im trying to write a script where it would run about 6 or 7 programs when i run it. with each program waiting a second after one has loaded before it runs, so that they will all pop up one at a time. this is what i wrote. terminator && sleep 1 && terminator && sleep 1 && terminator && sleep...
  4. L

    Basic Script

    Im trying to write a script where it would run about 6 or 7 programs when i run it. with each program waiting a second after one has loaded before it runs, so that they will all pop up one at a time. this is what i wrote. terminator && sleep 1 && terminator && sleep 1 && terminator && sleep...
Top