Off topic chat. Basically anything that doesn't concern halo or halo modding can go here.
kibito87
Posts: 3461 Joined: Mon Feb 21, 2005 7:49 pm
Location: Ohio
Contact:
Post
by kibito87 » Thu Apr 09, 2009 9:24 am
So I have this quiz my teacher gave me and i'm having a little trouble trying to find what these commands do...I can either type them out here or if you wouldn't mind contacting me on AIM or via PM's that would be awesome.
echo*
echo /*
echo \*
echo "*"
echo
echo */*
rm *
Then if you wouldn't help me further i'd greatly appreciate this.
shadowkhas
Posts: 5423 Joined: Wed Jun 23, 2004 8:00 am
Location: Salt Lake City, Utah
Post
by shadowkhas » Thu Apr 09, 2009 11:28 am
Or, man <command>
(7:15:27 PM) Xenon7: I BRUK THE FIRST PAGE OMGOMGOMG RONALD REGAN
kibito87
Posts: 3461 Joined: Mon Feb 21, 2005 7:49 pm
Location: Ohio
Contact:
Post
by kibito87 » Thu Apr 09, 2009 1:19 pm
Sneaky, i'm talking strictly unix not linux. Shadow, what?
Altimit01
Posts: 947 Joined: Sun Jun 04, 2006 12:10 pm
Post
by Altimit01 » Thu Apr 09, 2009 5:15 pm
He's saying use the man page from your terminal. Also echo and rm should behave the same for linux and unix. They're such basic commands that the differences if present would be minimal.
Edit: it would be a very bad idea to run the last command from your terminal. Just saying.
WaeV
Posts: 1045 Joined: Tue Jun 01, 2004 10:45 am
Location: New England
Post
by WaeV » Thu Apr 09, 2009 6:24 pm
As long as you weren't running as root, would the last command do anything?
FleetAdmiralBacon
Posts: 2377 Joined: Sat Nov 26, 2005 7:01 pm
Location: Ohio
Contact:
Post
by FleetAdmiralBacon » Fri Apr 10, 2009 5:51 am
WaeV wrote: As long as you weren't running as root, would the last command do anything?
It would delete everything in the current folder that you have write access to. (But not subfolders.)
MarsMartianMan
Posts: 431 Joined: Tue Apr 01, 2008 11:34 am
Location: Florida
Contact:
Post
by MarsMartianMan » Sat Apr 11, 2009 9:57 am
I got a gigantic wall of text, looks like my entire HDD's contents.
Your teacher is evil.
Welcome to Mars.
Thien wrote: On the bright side, I groped some black dude today.
Altimit01
Posts: 947 Joined: Sun Jun 04, 2006 12:10 pm
Post
by Altimit01 » Sat Apr 11, 2009 5:44 pm
echo */* will do that. wouldn't expect anything less really.
kibito87
Posts: 3461 Joined: Mon Feb 21, 2005 7:49 pm
Location: Ohio
Contact:
Post
by kibito87 » Sat Apr 11, 2009 7:24 pm
Altimit01 wrote: echo */* will do that. wouldn't expect anything less really.
Why would both do the same thing tho? So having the wildcard before or after the forward slash means nothing?
LuxuriousMeat
Posts: 824 Joined: Thu Nov 03, 2005 6:43 pm
Location: zzzzzzzzzzzzzzzz
Contact:
Post
by LuxuriousMeat » Sun Apr 12, 2009 7:20 am
kibito87 wrote: Altimit01 wrote: echo */* will do that. wouldn't expect anything less really.
Why would both do the same thing tho? So having the wildcard before or after the forward slash means nothing?
No, I'm assuming the wildcard is before the / too so it will do files in parent folders if your current directory isn't the root of the file system.
noxiousraccoon
Posts: 441 Joined: Wed May 17, 2006 2:54 pm
Post
by noxiousraccoon » Tue Apr 14, 2009 11:18 pm
The built in echo command writes out any words that follow it on the same command line to standard output so it's output can be directed to a file.