Ajout de nouveaux fichiers de test et suppression de fichiers obsolètes

This commit is contained in:
2025-03-07 21:53:09 +01:00
parent ca42e51636
commit f1f378d68d
202 changed files with 0 additions and 1163 deletions

View File

@@ -0,0 +1,21 @@
all: ~/temp/test.txt /tmp/test.txt ./path/with/slashes/test.txt path-with-dashes.txt path_with_underscores.txt
~/temp/test.txt:
mkdir -p ~/temp
echo "Content in home directory" > ~/temp/test.txt
/tmp/test.txt:
echo "Content in tmp directory" > /tmp/test.txt
./path/with/slashes/test.txt:
mkdir -p ./path/with/slashes
echo "Content in path with slashes" > ./path/with/slashes/test.txt
path-with-dashes.txt:
echo "Content in file with dashes" > path-with-dashes.txt
path_with_underscores.txt:
echo "Content in file with underscores" > path_with_underscores.txt
clean:
rm -rf ~/temp/test.txt /tmp/test.txt ./path/with/slashes path-with-dashes.txt path_with_underscores.txt

View File

@@ -0,0 +1,21 @@
all: ~/temp/test.txt /tmp/test.txt ./path/with/slashes/test.txt path-with-dashes.txt path_with_underscores.txt
~/temp/test.txt:
mkdir -p ~/temp
echo "Content in home directory" > ~/temp/test.txt
/tmp/test.txt:
echo "Content in tmp directory" > /tmp/test.txt
./path/with/slashes/test.txt:
mkdir -p ./path/with/slashes
echo "Content in path with slashes" > ./path/with/slashes/test.txt
path-with-dashes.txt:
echo "Content in file with dashes" > path-with-dashes.txt
path_with_underscores.txt:
echo "Content in file with underscores" > path_with_underscores.txt
clean:
rm -rf ~/temp/test.txt /tmp/test.txt ./path/with/slashes path-with-dashes.txt path_with_underscores.txt