about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/3/Java/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/3/Java/README.md')
-rw-r--r--usth/ICT2.2/labwork/3/Java/README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/3/Java/README.md b/usth/ICT2.2/labwork/3/Java/README.md
new file mode 100644
index 0000000..f0c494a
--- /dev/null
+++ b/usth/ICT2.2/labwork/3/Java/README.md
@@ -0,0 +1,10 @@
+# Labwork 3: Implementations in Java
+
+For the ease of typing, the test files are named `<classname>Test.java`
+instead of `<classname>TestDrive.java`.
+To rename them to the original requirement, use Perl `rename` and GNU `sed`
+
+```sh
+rename s/Test/TestDrive/ *Test.java
+sed -i s/Test/TestDrive/ *TestDrive.java
+```