diff options
author | Dave Reisner <d@falconindy.com> | 2011-06-02 10:30:21 -0400 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2011-06-04 14:54:57 -0400 |
commit | d847a204aa5ab21a6c02998846ec3216cc7f887d (patch) | |
tree | 2d628838c37f5caec31bb1d26a836bfd06c5233d /rc.single | |
parent | 023d6584d487d1c72788429584d4f2480075c963 (diff) |
use $() instead of `` for command substitutions
Signed-off-by: Dave Reisner <d@falconindy.com>
Diffstat (limited to 'rc.single')
-rwxr-xr-x | rc.single | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ if [[ $RUNLEVEL = 1 ]]; then fi /bin/touch /var/log/boot -kill `/bin/cat /run/bootlogd.pid` +kill $(/bin/cat /run/bootlogd.pid) /bin/rm /run/bootlogd.pid # End of file |