Search Results

Search: Posts Made By: fahdmirza
8,322
Posted By Scott
* does not have the same meaning as in filename...
* does not have the same meaning as in filename expansion. In a regular expression, it matches 0 or more occurrences of the previously matched expression. You didn't try to match any expression. ....
8,322
Posted By Scott
$ awk -F, '$6 ~ /\.dat$/ {print $6}' tt.txt ...
$ awk -F, '$6 ~ /\.dat$/ {print $6}' tt.txt
col6.dat
Forum: Solaris 11-22-2010
15,883
Posted By bartus11
I think there needs to be 755 rights mode on...
I think there needs to be 755 rights mode on "/u01".
Forum: Solaris 11-22-2010
15,883
Posted By bartus11
Change user's home directory to...
Change user's home directory to /u01/network:usermod -d /u01/network ftp_user
Then add:restricted-uid ftp_userto /etc/ftpd/ftpaccess file.
7,847
Posted By Scrutinizer
It is the other way around; it takes the fields...
It is the other way around; it takes the fields in the line and turns every field into a record....
Then it matches the records that start with xmlUrl

If the separator is " then there are three...
7,847
Posted By Scrutinizer
Hi fahdmirza, this awk script changes the record...
Hi fahdmirza, this awk script changes the record separator to the value of the field separator so that every record becomes one field. Then it splits the new records in new fields separated by double...
7,847
Posted By Scrutinizer
awk 'BEGIN{RS=FS}/^xmlUrl/{print $2}' FS='"'...
awk 'BEGIN{RS=FS}/^xmlUrl/{print $2}' FS='"' infile

Output:
http://www.mattcutts.com/blog/feed/
http://feeds.feedburner.com/STC-Art
http://blogs.sun.com/ahl/feed/entries/atom
Showing results 1 to 7 of 7

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