Skip to content

Instantly share code, notes, and snippets.

View FuckStickFunFuck's full-sized avatar
:electron:
#MotionlessInWhite #EmaculateMisconception

LilPimpn86 FuckStickFunFuck

:electron:
#MotionlessInWhite #EmaculateMisconception
View GitHub Profile
HANDY ONE-LINE SCRIPTS FOR AWK 30 April 2008
Compiled by Eric Pement - eric [at] pement.org version 0.27
Latest version of this file (in English) is usually at:
http://www.pement.org/awk/awk1line.txt
This file will also be available in other languages:
Chinese - http://ximix.org/translation/awk1line_zh-CN.txt
USAGE:
@FuckStickFunFuck
FuckStickFunFuck / sed cheatsheet
Created November 21, 2025 19:48 — forked from ssstonebraker/sed cheatsheet
Sed Cheatsheet
FILE SPACING:
# double space a file
sed G
# double space a file which already has blank lines in it. Output file
# should contain no more than one blank line between lines of text.
sed '/^$/d;G'
@FuckStickFunFuck
FuckStickFunFuck / main.dart
Created June 12, 2023 19:21
powerful-flash-9865
void main() {
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
}