mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 21:46:27 +02:00
4 lines
75 B
Bash
4 lines
75 B
Bash
#!/bin/bash
|
|
|
|
rename 's/$/\.cs/' "$@" # Add .cs extension
|
|
csc -out:out *.cs
|