Skip to content

Instantly share code, notes, and snippets.

@arfar-x
Last active November 13, 2024 13:36
Show Gist options
  • Select an option

  • Save arfar-x/0e50f6002b57fff0c525f6f7b2f5d50d to your computer and use it in GitHub Desktop.

Select an option

Save arfar-x/0e50f6002b57fff0c525f6f7b2f5d50d to your computer and use it in GitHub Desktop.
Useful Shell scripts

Remove the files with creation time more than 10 days.

find . -type f -ctime +10 -exec rm {} +

Get creation time of a file in a human-readable format.

stat -c "%w"

Sourcing key-value pairs from a .env file.

[ -f .env ] && export $(grep -v '^#' .env | xargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment