Valhalla Legends Archive

General => /WHOAMI -- Introductions => Topic started by: jigsaw on February 22, 2004, 05:25 PM

Title: chmod
Post by: jigsaw on February 22, 2004, 05:25 PM
I am god.
Title: Re:chmod
Post by: iago on February 22, 2004, 06:51 PM
Quote from: jigsaw on February 22, 2004, 05:25 PM
I am god.

bash% chmod +e jigsaw.
Jigsaw has been executed
Title: Re:chmod
Post by: Hitmen on February 22, 2004, 11:55 PM
rm -r *

whoops.
Title: Re:chmod
Post by: iago on February 23, 2004, 08:20 AM
Quote from: Hitmen on February 22, 2004, 11:55 PM
rm -r *

whoops.

You removed every non-folder in the current directory?

rm -rf /
is much worse :P
Title: Re:chmod
Post by: Meh on February 23, 2004, 11:47 AM
Quote from: iago on February 22, 2004, 06:51 PM
chmod +e jigsaw.
Jigsaw has been executed
Is that the code to execute a program under Linux by any chance?
Title: Re:chmod
Post by: K on February 23, 2004, 03:11 PM
Quote from: The-Rabid-Lord on February 23, 2004, 11:47 AM
Quote from: iago on February 22, 2004, 06:51 PM
chmod +e jigsaw.
Jigsaw has been executed
Is that the code to execute a program under Linux by any chance?

That's the shell command to make a file executable.  Otherwise:

[jl@x. dhcp.colorado.edu] ./a.out
./a.out: Permission Denied.
Title: Re:chmod
Post by: Hitmen on February 23, 2004, 03:12 PM
Quote from: iago on February 23, 2004, 08:20 AM
Quote from: Hitmen on February 22, 2004, 11:55 PM
rm -r *

whoops.

You removed every non-folder in the current directory?

rm -rf /
is much worse :P
I was in a particularly non-destructive mood, for once.
Title: Re:chmod
Post by: Zakath on February 24, 2004, 11:06 AM
Quote from: K on February 23, 2004, 03:11 PM
That's the shell command to make a file executable.  Otherwise:

[jl@x. dhcp.colorado.edu] ./a.out
./a.out: Permission Denied.


a.out? Ewww...

g++ -o plz
Title: Re:chmod
Post by: iago on February 24, 2004, 11:50 AM
Quote from: Zakath on February 24, 2004, 11:06 AM
Quote from: K on February 23, 2004, 03:11 PM
That's the shell command to make a file executable.  Otherwise:

[jl@x. dhcp.colorado.edu] ./a.out
./a.out: Permission Denied.


a.out? Ewww...

g++ -o plz

I always use a.out for testing, unless I'm using a makefile/shellscript.
Title: Re:chmod
Post by: K on February 24, 2004, 01:16 PM
Quote from: Zakath on February 24, 2004, 11:06 AM
a.out? Ewww...

I know, it was an example  ::)


FLAGS = -Wall
SRC = main.cc rb.cc
HEADS = rb.h
OBJS = main.o  rb.o
EXE = hw2

$(EXE): $(OBJS) $(HEADS)
   g++ $(OBJS) -o $(EXE)

$(OBJS): $(HEADS)
   g++ -c $(SRC) $(FLAGS)

run: $(EXE)
   ./$(EXE)

clean:
   rm -f $(OBJS) $(EXE)
Title: Re:chmod
Post by: Adron on February 24, 2004, 04:49 PM
Quote from: iago on February 24, 2004, 11:50 AM
I always use a.out for testing, unless I'm using a makefile/shellscript.

If you have a file named "program.cc", then "make program" should compile program.cc and then link that into "program" for you. No need to ever use a.out?
Title: Re:chmod
Post by: iago on February 24, 2004, 05:21 PM
To compile, I type "gcc -Wall program.c"
Title: Re:chmod
Post by: Adron on February 24, 2004, 06:01 PM
Ah. Maybe you should set -Wall in your environment?
Title: Re:chmod
Post by: iago on February 25, 2004, 06:11 AM
Typing 5 characters is ok, and it's a habit.  Plus, I use many different computers and I don't want to forget when I use my school's/work's/etc.
Title: Re:chmod
Post by: Adron on February 25, 2004, 05:41 PM
Hmm, I suppose.

It's 7 more characters though :p


gcc -Wall program.c
make program


Title: Re:chmod
Post by: j0k3r on February 25, 2004, 06:15 PM
Quote from: Adron on February 25, 2004, 05:41 PM
Hmm, I suppose.

It's 7 more characters though :p


gcc -Wall program.c
make program



Actually, you need atleast one space, so it's more like 7 characters :P