Search Results

Search: Posts Made By: cgkmal
5,247
Posted By Scrutinizer
It is a symbolic link so the permissions are...
It is a symbolic link so the permissions are determined by those of ../sites-available/default. You can either change these permissions or use :w! to write the file..
5,247
Posted By Scrutinizer
When you do vim 000-default, you are really...
When you do vim 000-default, you are really editing ../sites-available/default through the symbolic link. If you change the permissions like this: chmod u+w 000-default - which means you are giving...
4,514
Posted By Franklin52
Hmm... it becomes more complicated, you could use...
Hmm... it becomes more complicated, you could use the scenario below:

Change the field separator temporary to ";"
awk -F "\"" ' {
for(i=1;i<=NF;i+=2) {
gsub(",", ";", $i)
}
}1'...
10,935
Posted By Chubler_XL
It's that spaces on either side of "=" Also you...
It's that spaces on either side of "="
Also you cat get rid of the sub() call my making field seperator "(" or ")"
RunsArray=( $(awk -F"[)(]" '/set Runs/{print $2}' SortScans) )
FoldersArray=(...
32,178
Posted By kurumi
@cgkmal, there are more information from...
@cgkmal, there are more information from coreutils info.

info coreutils 'ls invocation'
32,178
Posted By dinjo_jo
Use this command this is the fastest , even...
Use this command this is the fastest , even faster than find.

ls -lR . | egrep -c '^-'

The reason for difference is output in find and ls is ignoring hidden files.
1,546
Posted By dinjo_jo
Very well explained , top notch
Very well explained , top notch
2,777
Posted By Chubler_XL
OK L is the output Line Number it is incremented...
OK L is the output Line Number it is incremented (with L++) each time a Category line appears.

T tracks the output field 1=Category, 2=Titles, 3=Authors (set to 1 on Category line incremented on...
Showing results 1 to 8 of 8

 
All times are GMT -4. The time now is 01:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy