in reply to Re^2: Perl equivelant to bash '$*'
in thread Perl equivelant to bash '$*'
Invoking the script as: script-name a b c d yields: a b c d#!/bin/bash echo "$*"
From what you are saying, your program should only have one argument. You have to figure out why a shell is getting invoked.
|
|---|