Categories

 

May 2009
M T W T F S S
« Jan   Nov »
 123
45678910
11121314151617
18192021222324
25262728293031

What I'm Doing...

PlaytimePriya and KunalIMG00015.jpgIMG00017.jpgFallColors.jpgSpring

Autosys cheatsheet

Here are some handy aliases to use with autosys…

# Send Event
alias -x se=’sendevent -E’

# Start Job
alias -x fsj=’sendevent -E FORCE_STARTJOB -J’
alias -x sj=’sendevent -E STARTJOB -J’

# Job Report
ar=’autorep -w -J ‘

fsj=’sendevent -E FORCE_STARTJOB -J’
hold=’sendevent -E JOB_ON_HOLD -J ‘
ice=’sendevent -E JOB_ON_ICE -J ‘

jd=’job_depends -c -w -J ‘
killjob=’sendevent -E KILLJOB -J ‘
offhold=’sendevent -E JOB_OFF_HOLD -J ‘
office=’sendevent -E [...]

Share

FTP multiple files without prompt

I knew there was a way to ftp multiple files without being prompted.It was just a matter of knowing the syntax.

It is possible to download several files at once, using the mget command. This command can take several filenames as arguments, and you can even use wildcards to download matching files. For example, the command

mget [...]

Share