413 current 2025-06-03 09:48:36 25.05.20250424.f771eb4 6.12.24 *
This commit is contained in:
@@ -108,6 +108,8 @@ in {
|
|||||||
macchanger
|
macchanger
|
||||||
aircrack-ng
|
aircrack-ng
|
||||||
dhcpcd
|
dhcpcd
|
||||||
|
wireshark
|
||||||
|
postman
|
||||||
]
|
]
|
||||||
++ (
|
++ (
|
||||||
with lib; let
|
with lib; let
|
||||||
|
|||||||
@@ -134,6 +134,10 @@ in {
|
|||||||
name = "mit library experts";
|
name = "mit library experts";
|
||||||
url = "https://libraries.mit.edu/experts/";
|
url = "https://libraries.mit.edu/experts/";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "cmu email";
|
||||||
|
url = "https://email.cmu.edu";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -209,6 +209,19 @@ stack() {
|
|||||||
find . -type f -exec echo -e "\n--- {} ---\n" \; -exec cat {} \;
|
find . -type f -exec echo -e "\n--- {} ---\n" \; -exec cat {} \;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stack-b() {
|
||||||
|
(
|
||||||
|
while IFS= read -r -d '' file; do
|
||||||
|
# Print a header for each filename:
|
||||||
|
printf '\n--- %s ---\n' "$file"
|
||||||
|
# Dump the raw content of "$file" exactly (no transformations).
|
||||||
|
cat "$file"
|
||||||
|
done < <(find . -type f ! -name '*.json' -print0)
|
||||||
|
) \
|
||||||
|
| perl -p -e 'chomp if eof' \
|
||||||
|
| xclip -in -sel clip
|
||||||
|
}
|
||||||
|
|
||||||
stack-min() {
|
stack-min() {
|
||||||
find . -maxdepth 1 -type f -exec echo -e "\n--- {} ---\n" \; -exec cat {} \;
|
find . -maxdepth 1 -type f -exec echo -e "\n--- {} ---\n" \; -exec cat {} \;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user