I have file a.R with one function:
big_name<-function(name){
big_name<-toupper(toString(name))
return(big_name)
}
How can I call this function from cmd(command prompt or shell) with parameter for example "John", without R opening?