5 lines
68 B
Plaintext
5 lines
68 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
rename 's/$/\.v/' "$@" # Add .v extension
|
||
|
iverilog *.v
|