Created
March 13, 2024 02:00
-
-
Save heysanil/c856b97c0c6531fcb86376e0ec208f88 to your computer and use it in GitHub Desktop.
Bash script to recursively hide all files in a directory and its subdirectories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Function to recursively process files and folders | |
process_directory() { | |
local directory="$1" | |
# Loop through each item in the directory | |
for item in "$directory"/*; do | |
# Check if the item is a file | |
if [[ -f "$item" ]]; then | |
# Remove the hidden flag from the file | |
chflags nohidden "$item" | |
echo "Removed hidden flag from file: $item" | |
elif [[ -d "$item" ]]; then | |
# Remove the hidden flag from the folder | |
chflags nohidden "$item" | |
echo "Removed hidden flag from folder: $item" | |
# Recursively process the subdirectory | |
process_directory "$item" | |
fi | |
done | |
} | |
# Check if a directory is provided as an argument | |
if [[ $# -eq 0 ]]; then | |
echo "Please provide a directory path as an argument." | |
exit 1 | |
fi | |
# Get the directory path from the command-line argument | |
directory="$1" | |
# Check if the provided path is a valid directory | |
if [[ ! -d "$directory" ]]; then | |
echo "Invalid directory path: $directory" | |
exit 1 | |
fi | |
# Start processing the directory recursively | |
process_directory "$directory" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment