Question : RHEL command to do an LS and have the result stop until you hit the space bar

new at UNIX i do an LS and all the out put passes the screen by and I cant read the top of the results

Answer : RHEL command to do an LS and have the result stop until you hit the space bar

<cfform format="flash" width="300" height="500">
<cfformitem type="script">
function disable(){
if(check1.selected  == true)
{
     _root.mytext1.enabled = false;
     _root.mytext2.enabled = false;
     _root.mytext3.enabled = false;
     }
     else
     {
      _root.mytext1.enabled = true;
     _root.mytext2.enabled = true;
     _root.mytext3.enabled = true;
     }
     }
</cfformitem>
     <cfinput name="check1" type="checkbox" label="Disable" enabled="true" onClick="disable()" />
<cfinput type="text" name="mytext1">
<cfinput type="text" name="mytext2">
<cfinput type="text" name="mytext3">
</cfform>


This is the same way which i posted for you in earlier solutions :)  .
Random Solutions  
 
programming4us programming4us