mirror of
https://codeberg.org/puppe/mpuppe.de-blog-posts.git
synced 2025-12-20 01:12:17 +01:00
Import old blog posts
This commit is contained in:
commit
8084c1e15f
23 changed files with 1384 additions and 0 deletions
16
posts/2012-02-24-kaputte-symbolische-links-finden.markdown
Normal file
16
posts/2012-02-24-kaputte-symbolische-links-finden.markdown
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
layout: post
|
||||
title: "Kaputte symbolische Links finden"
|
||||
date: 2012-02-24 11:21
|
||||
comments: true
|
||||
categories: Bash
|
||||
description: So lassen sich kaputte symbolische Links finden.
|
||||
---
|
||||
|
||||
Mit folgendem Terminalbefehl lassen sich kaputte symbolische Links finden:
|
||||
|
||||
``` bash
|
||||
find / -type l ! -exec test -r {} \; -print
|
||||
```
|
||||
|
||||
Quelle: [http://www.linuxforums.org/forum/programming-scripting/94116-how-find-dead-symbolic-links.html#post468681](http://www.linuxforums.org/forum/programming-scripting/94116-how-find-dead-symbolic-links.html#post468681)
|
||||
Loading…
Add table
Add a link
Reference in a new issue