Apr 13, 2008 #1 signalsys Technical User Joined Sep 5, 2005 Messages 44 Location CN what's the meaning of TIME=${@:-5}
Apr 14, 2008 1 #2 columb IS-IT--Management Joined Feb 5, 2004 Messages 1,231 Location EU See this link It says that if $@ is set then use it, otherwise use '-5' $@ is the list of parameters to a script. Looks like it's setting a default if no parameter is passed. On the internet no one knows you're a dog Columb Healy Upvote 0 Downvote
See this link It says that if $@ is set then use it, otherwise use '-5' $@ is the list of parameters to a script. Looks like it's setting a default if no parameter is passed. On the internet no one knows you're a dog Columb Healy