Search Results

Search: Posts Made By: glev2005
Forum: Web Development 03-14-2013
3,243
Posted By glev2005
This is a guess but try putting your alias and...
This is a guess but try putting your alias and images directory directive before your proxypass stuff.
5,539
Posted By glev2005
Read the README file inside the downloaded tar.gz...
Read the README file inside the downloaded tar.gz file.

---------- Post updated at 03:30 PM ---------- Previous update was at 03:30 PM ----------


INSTALLATION
------------
- edit config.mk...
1,351
Posted By glev2005
If your example is correct, it seems that you...
If your example is correct, it seems that you basically want to print out everything except the uppercase lines, which could be done easily with
grep -v '^[A-Z]' filename.txt
Forum: OS X (Apple) 05-15-2012
18,768
Posted By glev2005
Ok well assuming you want to move the contents of...
Ok well assuming you want to move the contents of every folder on your desktop to the actual desktop you could do:
cd ~/Desktop && ls -l |awk '$0 ~ /'^d'/ {print $9}'|while read dir;do cd "$dir" &&...
9,501
Posted By glev2005
the \< \> (escaped < > characters) are regular...
the \< \> (escaped < > characters) are regular expressions for word boundries, so if you wanted a 4 number string that was not part of a string but stood alone, you could use them.. If you want the...
2,046
Posted By glev2005
Do you need all letters uppercase or just the...
Do you need all letters uppercase or just the first one? If you can settle for just the first one, this will work: sed 's/<h1> \(.*\) <\/h1>/\u\1/'
Showing results 1 to 6 of 6

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