DDLData Definition Language (DDL) statements are used to define the database structure or schema. Some examples: CREATE - to create objects in the databaseALTER - alters the structure of the databas...
yum -y install expect
[root@localhost ~]#vim test.exp #!/usr/bin/expect set foo "gaby" set month 2 set day 3 set year 2012 set date "$month:$day:$year" puts $date puts "hi, my name is $foo" &nbs...