adric: books icon (c) 2004 adric.net (Default)
adric ([personal profile] adric) wrote2005-09-19 08:09 pm

Bash scripting madness

As in it's driving me mad, not like we're having a sale or anything...
How do you set an environment variable's value to the output of a command?
It seems like this would work, but it doesn't:
set LIST=`ls | grep -v dump`
Nor does this, even though the Advanced Bash Scripting Guide suggests it here in lesson 12-15:
output=$(sed -n /"$1"/p $file) # Command substitution.

My code snippet:

#!/bin/bash

#get date
set DATE = $(date +%b%d%Y)

#get repo list
set REPOS = $(ls | grep -v dump)

echo date: $DATE repos list: $REPOS

gives:
date: repos list:

[identity profile] suri.livejournal.com 2005-09-20 01:59 am (UTC)(link)
Gee, and I thought tonight's discussion on % of WIP going into FOH based as indirect or direct labor was complicated!

Good luck!