forked from cea-hpc/NabLab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
listFiles.sh
executable file
·54 lines (44 loc) · 1.31 KB
/
listFiles.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/sh
P=plugins/fr.cea.nabla
echo PROJET $P > appList.txt
find $P/src -name "*.*" >> appList.txt
find $P/src-gen -name "*.*" >> appList.txt
find $P/model -name "*.*" >> appList.txt
P=plugins/fr.cea.nabla.edit
echo >> appList.txt
echo PROJET $P >> appList.txt
find $P/src -name "*.*" >> appList.txt
P=plugins/fr.cea.nabla.editor
echo >> appList.txt
echo PROJET $P >> appList.txt
find $P/src -name "*.*" >> appList.txt
P=plugins/fr.cea.nabla.ui
echo >> appList.txt
echo PROJET $P >> appList.txt
find $P/src -name "*.*" >> appList.txt
P=plugins/fr.cea.nabla.ide
echo >> appList.txt
echo PROJET $P >> appList.txt
find $P/src -name "*.*" >> appList.txt
P=tests/fr.cea.nabla.tests
echo >> appList.txt
echo PROJET $P >> appList.txt
find $P/src -name "*.*" >> appList.txt
P=plugins/fr.cea.nabla.javalib
echo >> appList.txt
echo PROJET $P >> appList.txt
find $P/src -name "*.*" >> appList.txt
P=plugins/fr.cea.nabla.cpplib
echo >> appList.txt
echo PROJET $P >> appList.txt
find $P/src -name "*.*" >> appList.txt
P=plugins/fr.cea.nabla.ir
echo >> appList.txt
echo PROJET $P >> appList.txt
find $P/src -name "*.*" >> appList.txt
find $P/model -name "*.*" >> appList.txt
P=plugins/fr.cea.nabla.sirius
echo >> appList.txt
echo PROJET $P >> appList.txt
find $P/src -name "*.*" >> appList.txt
find $P/description -name "*.*" >> appList.txt