7 lines
111 B
Bash
Executable File
7 lines
111 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# fully expand arguments
|
|
phrase=$@
|
|
|
|
argos-translate --from-lang en --to-lang fr "$phrase"
|