Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
keep up with lastest diff computation changes
[simgrid.git] / tools / tesh / cd.tesh
1 #! ./tesh
2
3 # This example uses the cd command
4
5 $ rm -rf testdir_temp
6 $ mkdir testdir_temp
7 $ cd testdir_temp
8
9 # Check that there is nothing in the current dir (which must be testdir_temp)
10 $ ls
11
12 # The next command checks that there is a testdir_temp in the upper directory, 
13 # ie that mkdir and cd both worked.
14 $ test -e ../testdir_temp
15
16 $ cd ..
17 $ rmdir testdir_temp