Returned 5 Results for "search" Ordered By Relevance
As a point of reference
how to convert a comma delimited file to an SQL insert
Assuming your data is the following
'key','value','0'
'key','value','1'
In notepad++ the syntax for search and replace would be as follows:
search: ('[^']+','[^']+','[^']+')
replace: (\1)
syntax varies depending on the flavour of regex
which can then have an insert statement added and...:
insert into table (key_value, value_blah, personal_id)
values
('key','value','0')
('key','value','1')
deleteing columns in Textpad
INSERT INTO "IB_RESOURCE_MESSAGE" (IB_MESSAGE_ID,IB_VALUE,IB_KEY,IB_BUNDLE_ID) VALUES (0,'Welcome #{identity.username}','loginSucceeded',0)
to delete the first value column (1, .... use the following
([0-9]+,
the plus will search for recurring instances of the pattern [0-9]
If you wish to search for DHCP servers on a network just type:
dhclient [interface]
and it will bring back information on all running DHCP servers on your subnet
If need to browse the world wide web and you are either running in an ssh window or you really hate the whole web 2 thing.. help is at hand
Centos
yum install lynx
Debian
apt-get intall lynx
run lynx then you can view this page like this...
icurtain - lights on the roundabout
[H] Blog IDAT205 IDAT204 IDAT203 IDAT201 AINT204 SOFT221 ISAD223 SOFT218 Linux JSF PHP Java[EE] Java[J2ME] SQL submit search for..________
Centos NFS Install
2008-06-04 11:41:15 digg this!
Download the Centos Boot image
Download the Centos DVD image and save it on an NFS enabled share on your lan
Install with Network boot CD
choose to boot: linux text
Choose Manual IPv4
192.168.1.* / 255.255.255.0
192.168.1.*
192.168.1.*
(NORMAL LINK) Use right-arrow or
Arrow keys: Up and Down to move. Right to follow a link; Left to go back.
H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list
when you group searches in the textpad regex editor you have to escape the grouping brackets with a backslash otherwise it searches them as literal characters
for example:
\([0-9]\) will search for any number 0-9
but if you omit the the escape slash it will look for (1) for example