summaryrefslogtreecommitdiff
path: root/src/content/tils/2020/11/08
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-04-16 11:20:43 -0300
committerEuAndreh <eu@euandre.org>2025-04-16 11:20:43 -0300
commitd36c2e459a74ec67e523539eb98b78b95b01432a (patch)
treea7099fbfbdab6a21f59b6efe095bffb40ceae646 /src/content/tils/2020/11/08
parentsrc/content/style.css: Show header on hover only (diff)
downloadeuandre.org-d36c2e459a74ec67e523539eb98b78b95b01432a.tar.gz
euandre.org-d36c2e459a74ec67e523539eb98b78b95b01432a.tar.xz
src/content/: Normalize [source,$lang] code blocks
Diffstat (limited to 'src/content/tils/2020/11/08')
-rw-r--r--src/content/tils/2020/11/08/find-broken-symlink.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/tils/2020/11/08/find-broken-symlink.adoc b/src/content/tils/2020/11/08/find-broken-symlink.adoc
index 9b44036..624d24a 100644
--- a/src/content/tils/2020/11/08/find-broken-symlink.adoc
+++ b/src/content/tils/2020/11/08/find-broken-symlink.adoc
@@ -6,7 +6,7 @@
The `find` command knows how to show broken symlinks:
-[source,shell]
+[source,sh]
----
find . -xtype l
----
@@ -15,7 +15,7 @@ This was useful to me when combined with {annex}[Git Annex]. Its
{annex-wanted}[`wanted`] option allows you to have a "sparse" checkout of the
content, and save space by not having to copy every annexed file locally:
-[source,shell]
+[source,sh]
----
git annex wanted . 'exclude=Music/* and exclude=Videos/*'
----