diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-11-30 13:30:51 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-11-30 13:30:51 +0100 |
commit | 7077eba3c3bf4ff2f641b5873e414ad9c3c541ba (patch) | |
tree | 39d7c10226f65df47d9c4ae179bdd4c9d93753fa /widgets/command_output | |
parent | 0e077a1ed82ca9bfb8e6f234f53bbb44400df86a (diff) | |
download | skin-flatplus-7077eba3c3bf4ff2f641b5873e414ad9c3c541ba.tar.gz skin-flatplus-7077eba3c3bf4ff2f641b5873e414ad9c3c541ba.tar.bz2 |
update widgets folders
Diffstat (limited to 'widgets/command_output')
-rwxr-xr-x | widgets/command_output/command.example | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/widgets/command_output/command.example b/widgets/command_output/command.example index 03b12b23..25eab1b2 100755 --- a/widgets/command_output/command.example +++ b/widgets/command_output/command.example @@ -1,6 +1,9 @@ #!/bin/bash -echo "MyTitle" > title +OUTPUTFLDR="/tmp/skinflatplus/widgets/command_output" +mkdir -p ${OUTPUTFLDR} -echo "output line 1" > output -echo "output line 2" >> output +echo "MyTitle" > ${OUTPUTFLDR}/title + +echo "output line 1" > ${OUTPUTFLDR}/output +echo "output line 2" >> ${OUTPUTFLDR}/output |