Command line: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 165: Line 165:
The first "d" in some of the items indicates a directory. Then, three groups of "rwx" follow. Each "r" means "file/directory may be read", each "w" means "file/directory may be written", each "x" means "file may be executed". The first group of "rwx" shows the rights of the owner of the file, the next group of "rwx" shows the rights of the group of the owner and the last group gives information about what everybody may do with the file.
The first "d" in some of the items indicates a directory. Then, three groups of "rwx" follow. Each "r" means "file/directory may be read", each "w" means "file/directory may be written", each "x" means "file may be executed". The first group of "rwx" shows the rights of the owner of the file, the next group of "rwx" shows the rights of the group of the owner and the last group gives information about what everybody may do with the file.


As there are some scripts out there, that can be downloaded, you have to make them executable in most of the cases (because downloading only sets -rw-r--r-- per default). Making a file executable can be achieved by the "chmod" command. We use the "ls" command with its "-l" option and the ''pipe'' to filter the output of "ls" by "grep":
As there are some scripts out there, that can be downloaded, you have to make them executable in most of the cases (because downloading only sets "-rw-r--r--" per default). Making a file executable can be achieved by the "chmod" command. We use the "ls" command with its "-l" option and the ''pipe'' to filter the output of "ls" by "grep":


  username@computername:~/flightgear$ ls -l | grep download_and_compile.sh  
  username@computername:~/flightgear$ ls -l | grep download_and_compile.sh  
Line 176: Line 176:
  -rwxr-xr-x  1 username usergroupname  15263 2009-02-05 21:23 download_and_compile.sh
  -rwxr-xr-x  1 username usergroupname  15263 2009-02-05 21:23 download_and_compile.sh


Notice, that "download_and_compile.sh"
Notice, that "download_and_compile.sh" at first had the executable bits all set, then we take them away by "chmod -x" and give them back by "chmod +x". You can do the same with read and write rights.


==External links==
==External links==
51

edits