G getopt ␢ Mar 28, 2023 #1 Code: > ls -lF total 331 srwxrwxrwx 1 someuser someuser 0 Dec 27 12:30 ??????= Where '??????' seam to be non printable characters like '^P<E4><FF><FF><FF>^?'
Code: > ls -lF total 331 srwxrwxrwx 1 someuser someuser 0 Dec 27 12:30 ??????= Where '??????' seam to be non printable characters like '^P<E4><FF><FF><FF>^?'
covacat Mar 28, 2023 #2 find . -type s -print0|xargs -0 rm if you dont have other sockets in that dir or find . -type s -delete
find . -type s -print0|xargs -0 rm if you dont have other sockets in that dir or find . -type s -delete
Y yuripv79 Mar 28, 2023 #3 Find its inode using ls -i, use find to find/delete it: Code: $ touch foo $ ls -i foo 82969 foo $ find . -inum 82969 ./foo $ find . -inum 82969 -delete
Find its inode using ls -i, use find to find/delete it: Code: $ touch foo $ ls -i foo 82969 foo $ find . -inum 82969 ./foo $ find . -inum 82969 -delete