6 lines
73 B
Bash
Executable File
6 lines
73 B
Bash
Executable File
#!/bin/sh
|
|
|
|
curr_dir="$(pwd)"
|
|
cd $1 && touch "${2}".java && cd $curr_dir
|
|
|