You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Linux_curated_resources.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ Collection of resources for Linux command line, shell scripting (mostly `bash`)
70
70
*[stackoverflow: Command line tricks](https://stackoverflow.com/q/68372/4082052)
71
71
*[commandlinefu](https://www.commandlinefu.com/commands/browse/sort-by-votes) — command-line gems, includes a handy search feature
72
72
*[Bash-Oneliner](https://github.com/onceupon/Bash-Oneliner) — collection of handy Bash One-Liners and terminal tricks for data processing and Linux system maintenance
73
-
*[bash Idioms](https://www.oreilly.com/library/view/bash-idioms/9781492094746/) — decipher old bash code and write new code that's as clear and readable as possible
73
+
*[Bash Idioms](https://www.oreilly.com/library/view/bash-idioms/9781492094746/) — decipher old bash code and write new code that's as clear and readable as possible
74
74
75
75
## Cheatsheets
76
76
@@ -134,3 +134,4 @@ Read instructions provided by respective forums before asking a question. Try so
134
134
*[/r/linux](https://old.reddit.com/r/linux/) — general linux discussion
135
135
*[askubuntu](https://askubuntu.com/questions/tagged/command-line?sort=votes&pageSize=15) — Ubuntu and general Linux topics
136
136
*[TuxURLs](https://tuxurls.com/) — Linux news aggregator
Copy file name to clipboardExpand all lines: Perl_curated_resources.md
+12-16Lines changed: 12 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,18 +14,14 @@ You can use `perldoc` command to access documentation from the command line. You
14
14
15
15
## Tutorials and Books
16
16
17
-
*[Learning Perl, 7th Edition](https://www.oreilly.com/library/view/learning-perl-7th/9781491954317/) — getting started with Perl, whether you're a programmer, system administrator, or web hacker
18
-
* Perl Maven — basics of the Perl programming language. You'll be able to write simple scripts, analyze log files and read and write CSV files. Just to name a few common tasks
* Modern Perl — teaches you how Perl really works, from its philosophical roots to the pragmatic decisions that help you solve real problems and keep them solved
*[book and pdf(free) versions](http://onyxneon.com/books/modern_perl/)
17
+
*[Learning Perl, 8th Edition](https://www.oreilly.com/library/view/learning-perl-8th/9781492094944/) — getting started with Perl, whether you're a programmer, system administrator, or web hacker
18
+
*[Perl Maven](https://perlmaven.com/perl-tutorial) — basics of the Perl programming language. You'll be able to write simple scripts, analyze log files and read and write CSV files. Just to name a few common tasks
19
+
*[Modern Perl](http://modernperlbooks.com/books/modern_perl_2016/) — teaches you how Perl really works, from its philosophical roots to the pragmatic decisions that help you solve real problems and keep them solved
24
20
*[Effective Perl Programming](https://www.effectiveperlprogramming.com/about/) — write better, more idiomatic Perl
25
21
*[Perl for newbies](https://perl-begin.org/tutorials/perl-for-newbies/) — provide Perl newcomers with the most high-quality and accessible material and references for learning the Perl programming language as easily, as accurately, and as efficiently, as possible
26
22
*[perlmeme](http://perlmeme.org/start_here/index.html) — FAQs, HOWTOs and TUTORIALs (working example code of various tasks in Perl like parsing CSV/HTML, creating web form, connecting to database, etc)
27
23
28
-
I wrote an ebook specifically for [Perl one-liners](https://learnbyexample.github.io/learn_perl_oneliners/), which is free to read online.
24
+
I wrote an ebook specifically for [Perl One-Liners](https://learnbyexample.github.io/learn_perl_oneliners/), which is free to read online.
29
25
30
26
## Code snippets, articles and exercises
31
27
@@ -38,9 +34,9 @@ I wrote an ebook specifically for [Perl one-liners](https://learnbyexample.githu
38
34
*[learnxinyminutes: cheatsheet with descriptions](https://learnxinyminutes.com/docs/perl/)
39
35
*[Hyperpolyglot](https://perl-begin.org/tutorials/hyperpolyglot/sheet1.html) — side-by-side reference sheet for PHP, Perl, Python, Ruby
@@ -50,10 +46,10 @@ I wrote an ebook specifically for [Perl one-liners](https://learnbyexample.githu
50
46
*[syntax of regular expressions](https://perldoc.perl.org/perlre)
51
47
*[FAQ on regular expressions](https://perldoc.perl.org/perlfaq#perlfaq6:-Regular-Expressions)
52
48
* Practice and general regexp tutorials (i.e they may not be Perl specific)
53
-
*[regex101](https://regex101.com/) — online regex tester, has an option for [PCRE](https://www.pcre.org/), shows explanations, has reference guides and ability to save and share regex
54
-
*[debuggex](https://www.debuggex.com) — railroad diagrams for regular expressions, select flavor as PCRE before use
49
+
*[regex101](https://regex101.com/) — online regex tester, shows explanations, has reference guides and ability to save and share regex
50
+
*[debuggex](https://www.debuggex.com) — railroad diagrams for regular expressions
55
51
*[stackoverflow: what does this regex mean?](https://stackoverflow.com/q/22937618/4082052)
56
-
*[regexcrossword](https://regexcrossword.com/) — practice by solving crosswords, read 'How to play' section before you start, only support JS flavor
52
+
*[regexcrossword](https://regexcrossword.com/) — practice by solving crosswords, read 'How to play' section before you start, only supports JS flavor
0 commit comments