Skip to content

Instantly share code, notes, and snippets.

@letam
Created May 9, 2023 01:25
Show Gist options
  • Save letam/96bae9e373f2c2d48a97f2159feee285 to your computer and use it in GitHub Desktop.
Save letam/96bae9e373f2c2d48a97f2159feee285 to your computer and use it in GitHub Desktop.
Replace venv path in files
#!/usr/bin/env bash
new_venv_path=/Users/tams/code/django-app-starter/.venv
old_venv_path=`tail -1 ./.venv/pyvenv.cfg | cut -d' ' -f6`
echo Old venv path is at: $old_venv_path
echo Files containing path:
for x in `grep -rnw . -e "$old_venv_path" --binary-files=without-match | cut -d: -f1`;
do echo $x
sed -i "s|$old_venv_path|$new_venv_path|g" $x
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment