sybase
--------------------------
### go shell for sybase
isql -Uibs -Pibsibs<
$*
go
EOF
--------------------------
###bcpin
bcp $1 in $1.txt -Uusername -Ppwd -Sservername -c -t'|'
###bcpout
bcp $1 out $1.txt -Uusername -Ppwd -Sservername -c -t'|'
db2
# go shell for db2
db2 <
connect to your_db_name;
$*
quit;