Linux delete hidden files in current directory
Original link: https://hellodk.cn/post/1045 We all know that using rm -rf ./* or rm -rf * cannot delete hidden files in the current directory. How do I delete hidden files ( start with . )? $ rm -rf .* This works, but it will prompt you that . and .. cannot be deleted, that is, the […]
Linux delete hidden files in current directory Read More »