From d041cdec079f1f656558fb415c133a2020880565 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 8 Nov 2020 08:40:25 -0300 Subject: Add find -xtype l TIL entry --- _tils/2020-11-08-find-broken-symlinks-with-find.md | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 _tils/2020-11-08-find-broken-symlinks-with-find.md (limited to '_tils/2020-11-08-find-broken-symlinks-with-find.md') diff --git a/_tils/2020-11-08-find-broken-symlinks-with-find.md b/_tils/2020-11-08-find-broken-symlinks-with-find.md new file mode 100644 index 0000000..7912df0 --- /dev/null +++ b/_tils/2020-11-08-find-broken-symlinks-with-find.md @@ -0,0 +1,34 @@ +--- + +title: Find broken symlinks with "find" + +date: 2020-11-08 + +layout: post + +lang: en + +ref: find-broken-symlinks-with-find + +--- + +The `find` command knows how to show broken symlinks: + +```shell +find . -xtype l +``` + +This was useful to me when combined with [Git Annex][git-annex]. Its +[`wanted`][git-annex-wanted] option allows you to have a "sparse" checkout of +the content, and save space by not having to copy every annexed file locally: + +```shell +git annex wanted . 'exclude=Music/* and exclude=Videos/*' +``` + +You can `find` any broken symlinks outside those directories by querying with +Git Annex itself, but `find . -xtype l` works on other places too, where broken +symlinks might be a problem. + +[git-annex]: https://git-annex.branchable.com/ +[git-annex-wanted]: https://git-annex.branchable.com/git-annex-wanted/ -- cgit v1.2.3