sed 233 B

123456789
  1. #!/usr/bin/env bash
  2. # This file is part of the OpenADK project. OpenADK is copyrighted
  3. # material, please see the LICENCE file in the top-level directory.
  4. if [ -z "$(which gsed 2>/dev/null)" ];then
  5. /bin/sed "$@"
  6. else
  7. gsed "$@"
  8. fi