Skip to content

Commit c24d6fc

Browse files
author
Mohamed Sarwat
committed
Update README.md
1 parent 677089a commit c24d6fc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@ Once you've synced with GitHub, the folder should contain the source code for Po
2424
1) Run the installation script install.pl.
2525

2626
```
27-
perl install.pl [abs_path]
27+
perl scripts/install.pl [abs_path]
2828
```
2929

3030
[abs_path] is the absolute path to the directory where you want PostgreSQL installed. The directory should exist before running this script. This will also create a folder "data" in the PostgreSQL folder; this is where the database will be located.
3131

3232
2) Run the database server script pgbackend.pl.
3333

3434
```
35-
perl pgbackend.pl
35+
perl scripts/pgbackend.pl
3636
```
3737

3838
The install.pl script stores the install path in a separate file, so there shouldn't be any need to specify it.
3939

4040
3) In a second terminal, run the database interaction script pgfrontend.pl.
4141

4242
```
43-
perl pgfrontend.pl [db_name] [server_host]
43+
perl scripts/pgfrontend.pl [db_name] [server_host]
4444
```
4545

4646
[db_name] is the name of the database that you intend to use.
@@ -53,21 +53,21 @@ If you need to rebuild PostgreSQL, there are two options.
5353
If you have not modified the grammar, you can do a quick rebuild with remake.pl.
5454

5555
```
56-
perl remake.pl
56+
perl scripts/remake.pl
5757
```
5858

5959
If you have modified the grammar, you will need to do a longer rebuild with remakefull.pl.
6060

6161
```
62-
perl remakefull.pl [abs_path]
62+
perl scripts/remakefull.pl [abs_path]
6363
```
6464

6565
[abs_path] is the absolute path to the directory where you want PostgreSQL installed. The directory should exist before running this script.
6666

6767
If you ever want to eliminate the current database , use the clean.pl script.
6868

6969
```
70-
perl clean.pl [db_name] [server_host]
70+
perl scripts/clean.pl [db_name] [server_host]
7171
```
7272

7373
## How RecDB Works

0 commit comments

Comments
 (0)