This file contains 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 characters
#include <fcntl.h> | |
int main(int argc, char* argv[]) | |
{ | |
if (argc < 2) { | |
return(2); | |
} | |
if (open(argv[1], O_TRUNC | O_WRONLY) < 0) { | |
return(1); |
This file contains 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 characters
#include <sys/ioctl.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
int main(void) | |
{ | |
struct winsize ws; | |
ioctl(STDIN_FILENO, TIOCGWINSZ, &ws); |
This file contains 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 characters
#! /usr/bin/env bash | |
# Tested on p7zip Version 16.02 | |
_Main() | |
{ | |
declare __manifestFilepath="$1"; | |
shift; | |
if [[ ! "$__manifestFilepath" =~ \.txt$ ]]; |
This file contains 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 characters
# /usr/bin/env bash | |
_totalSize=0; | |
_Fmt() ( numfmt --from=iec --to=iec --suffix B --format='%0.2f' -- "${1}K"; ); | |
_DirSize() ( sudo -- bash -c 'if [[ -d "$1" ]]; then du -ks -- "$1" | cut -f1; else printf ?; fi;' - "$1"; ); | |
_TreePath() ( sudo -- tree -avr --charset=ascii --dirsfirst --du -- "$1"; ); | |
_PreviewLayers() | |
{ |
This file contains 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 characters
#! /usr/bin/env bash | |
# Author: Artfaith | |
# Date: 2021 | |
# Related: https://stackoverflow.com/questions/66357451/why-does-signing-a-certificate-require-cacreateserial-argument | |
# -------------------------- # | |
# User variables # | |
# -------------------------- # |