22 Aug, 2009, jonasdf85 wrote in the 1st comment:
Votes: 0
hey guys i have for gotten all the shell commands it has been a while anyone know a site or have about 10 mins of their time to help me i need to make a new folder and move a file and unzip a .zip file
please and thank you guys for your time

evan
aim jonasdf85
22 Aug, 2009, Zeno wrote in the 2nd comment:
Votes: 0
22 Aug, 2009, Barm wrote in the 3rd comment:
Votes: 0
mkdir mydirectory
mv myfile.dat mydirectory/
unzip myzipfile.zip -d mydirectory/


For more information, try the manual command for each or run each with the '–help' switch ('–help' is a GNU convention so it's more common on Linux than BSD).

man mkdir
mkdir –help
0.0/3