Last active
November 8, 2021 15:07
-
-
Save zulhfreelancer/233a56046143bef507beb50747d3c380 to your computer and use it in GitHub Desktop.
Revisions
-
zulhfreelancer revised this gist
Apr 17, 2018 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,4 +7,8 @@ OR ``` $ \rm -f ~/Library/Application\ Support/Postgres/var-10/postmaster.pid ``` Why `\rm` and not `rm`? [https://stackoverflow.com/q/15691977/1577357](https://stackoverflow.com/q/15691977/1577357) -
zulhfreelancer revised this gist
Apr 17, 2018 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,10 @@ ``` $ cd ~/Library/Application\ Support/Postgres/var-10 $ \rm -f postmaster.pid ``` OR ``` $ \rm -f ~/Library/Application\ Support/Postgres/var-10/postmaster.pid ``` -
zulhfreelancer revised this gist
Apr 17, 2018 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,10 @@ ``` $ cd ~/Library/Application\ Support/Postgres/var-10 $ rm -f postmaster.pid ``` OR ``` $ rm -f ~/Library/Application\ Support/Postgres/var-10/postmaster.pid ``` -
zulhfreelancer revised this gist
Jan 29, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ ``` $ cd ~/Library/Application\ Support/Postgres/var-10 $ rm -f postmaster.pid ``` -
zulhfreelancer created this gist
Jan 29, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ ``` $ cd ~/Library/Application\ Support/Postgres/var-10 rm -f postmaster.pid ```