blob: f0c494a80351d48a0ae64f0ae951bb9eda7efedb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
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
```
|