Changes between Version 18 and Version 19 of YM_Course_2009/Lab4


Ignore:
Timestamp:
Jul 4, 2009, 4:45:05 PM (16 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified YM_Course_2009/Lab4

    v18 v19  
    206206
    207207{{{
    208 $ cat > test1.sh << EOF
     208cat > test1.sh << EOF
    209209#!/bin/bash
    210210echo "Enter a filename: "
     
    216216fi
    217217EOF
    218 $ chmod a+x test1.sh
    219 $ ./test1.sh
    220 }}}
    221 
    222 {{{
    223 $ cat > test2.sh << EOF
     218}}}
     219{{{
     220chmod a+x test1.sh
     221./test1.sh
     222}}}
     223
     224{{{
     225cat > test2.sh << EOF
    224226#! /bin/bash
    225227
     
    234236fi
    235237EOF
    236 $ chmod a+x test2.sh
    237 $ ./test2.sh
    238 }}}
     238}}}
     239{{{
     240chmod a+x test2.sh
     241./test2.sh
     242}}}