Make more function variables local to avoid polluting the environment
[config/bash.git] / .bash / aliases.d / record
1 #!/bin/bash
2
3 if command -v script &> /dev/null;
4 then
5   function record()
6   {
7     local TIMESTAMP
8     TIMESTAMP="$(date '+%Y-%m-%d-%H:%M:%S')"
9
10     # The trick here is to use 'type' to eat any leading environment variables
11     # and get to the command name.
12     local COMMAND_NAME
13     COMMAND_NAME="$(type -P "$@" 2>/dev/null | cut -d ' ' -f 1)"
14
15     [ "x$COMMAND_NAME" = "x" ] && return 1
16
17     # Escape the argument so that it can be reused as shell input
18     # NOTE: this is Bash specific.
19     local COMMAND_ESCAPED
20     COMMAND_ESCAPED=$(printf "%q " "$@")
21
22     script -q -e -c "$COMMAND_ESCAPED" "${TIMESTAMP}_$(basename "$COMMAND_NAME").log"
23   }
24   complete -F _command record
25 fi