Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save imjyotiraditya/603934df9b4105ab28217e276ccdd3a1 to your computer and use it in GitHub Desktop.
Save imjyotiraditya/603934df9b4105ab28217e276ccdd3a1 to your computer and use it in GitHub Desktop.
function cclip {
for file in "$@"; do
echo "=== $file ==="
cat "$file"
echo
done | xclip -selection clipboard
}
function dclip {
find "$(pwd)" -type f -not -path '*/\.*' -print0 | xargs -0 -I {} bash -c '
echo "=== {}"
cat "{}"
echo
' | xclip -selection clipboard
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment