vineetbansal / wbi

0 stars 0 forks source link

Make hello remote template simpler #9

Closed vineetbansal closed 10 months ago

vineetbansal commented 11 months ago

For wbi remote command which uses the hello.jinja template, just using bash to output Hello <hostname> is more robust than using python (which is not available on Della by default anyway).

anushka255 commented 10 months ago

Converted previous Python code python -c "import socket; print('Hello ' + socket.gethostname());" to a simple bash code echo "Hello $(hostname)".

vineetbansal commented 10 months ago

A PR and we can merge this..