Tagged Questions
2
votes
0answers
28 views
KSH styling text based menu using STDERR
Is it possible to format the STDERR in order to have a better looking menu using the select command?
I have a simple select
select oChoice in $(<tempMenu.menu) ; do
case "$oChoice" in
...
0
votes
0answers
77 views
Where can I find a storage integrity (write/read) test using basic bash scripting?
I am in need of shell scripts and/or bash commands to verify data integrity of local harddrives, usb-drives, etc.
I am looking for a solution like the famous www.heise.de/download/h2testw or ...
3
votes
1answer
190 views
wait for autossh connection to complete
I'm trying to create a script that runs a few commands that take a long time to execute and require a constant connection, but
autossh user@server
wait $! #or wait ${!}
commandA
commandB
doesn't ...
0
votes
1answer
152 views
Script that unpacks a initrd, allows editing of the preseed.cfg and the packs it to cpio and gzip again
I want to program a script that allows what is said in the title. So basically I gunzip the initrd, than unpack the cpio, open vi to allow editing, save, pack with cpio, and gzip again, so nothing ...