spicylord / clutils (public) (License: GPLv3) (since 2019-07-04) (hash sha1)
An assortment of new and rewritten preexisting tools written by me.
List of commits:
Subject Hash Author Date (UTC)
made regex slightly neater ac8eda8f7290e5f138edac12f789b1215de90719 spicylord 2019-07-04 18:31:55
fixed outputting garbled text into clipboard file a100287acf1993ae13130e036d7104bd2afe4585 spicylord 2019-07-04 18:30:34
fixed install script to compile clp.c instead of clb.c 54a54b5da1a122e69ed62bc0f030f11044a62fb9 spicylord 2019-07-04 13:47:33
added email a04151394c9a4b3afe23e8ebd11939fe7892737d spicylord 2019-07-04 02:58:00
initial commit 484a7ed27b1835a962cec85cc6f55a20d4a95b46 spicylord 2019-07-04 02:50:23
Commit ac8eda8f7290e5f138edac12f789b1215de90719 - made regex slightly neater
Author: spicylord
Author date (UTC): 2019-07-04 18:31
Committer name: spicylord
Committer date (UTC): 2019-07-04 18:31
Parent(s): a100287acf1993ae13130e036d7104bd2afe4585
Signing key:
Tree: d2410e0ec6ea6a0203938316b5be1006b67f1988
File Lines added Lines deleted
nl.l 1 3
File nl.l changed (mode: 100644) (index b285e64..94381f8)
... ... int linenum = 0;
4 4 %} %}
5 5 %% %%
6 6 printf("%s", yytext); printf("%s", yytext);
7 ^. printf("%6i%3c", ++linenum, yytext[0]);
8 ^\n printf("%6i%3c", ++linenum, yytext[0]);
7 ^.|\n printf("%6i%3c", ++linenum, yytext[0]);
9 8 %% %%
10 9
11 10 int main(int argc, char *argv[]) int main(int argc, char *argv[])
 
... ... int main(int argc, char *argv[])
17 16 continue; continue;
18 17 } }
19 18 yylex(); yylex();
20 fclose(yyin);
21 19 } while (argc>++i); } while (argc>++i);
22 20 return 0; return 0;
23 21 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/spicylord/clutils

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/spicylord/clutils

Clone this repository using git:
git clone git://git.rocketgit.com/user/spicylord/clutils

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main