Re: #!shebang

2024-11-20 Thread G.W. Haywood
Hi there, On Wed, 20 Nov 2024, lacsaP Patatetom wrote: ... I can eliminate them using `grep` like this : `$ qemu $(grep -v '^#' configuration.qemu)` but it seems to me complicated and time-consuming to enter. ... ... another way ... ? You could always use an alias, something like alias qemu

Re: #!shebang

2024-11-20 Thread lacsaP Patatetom
Le mer. 20 nov. 2024 à 10:37, lacsaP Patatetom a écrit : > hi, > > I'd like to use an executable file as a configuration file for `qemu` > using a shebang : let me explain. > > I currently store my configuration like this in `configuration.qemu` : > ``` > -ar

#!shebang

2024-11-20 Thread lacsaP Patatetom
hi, I'd like to use an executable file as a configuration file for `qemu` using a shebang : let me explain. I currently store my configuration like this in `configuration.qemu` : ``` -argument - argument -option -etc... ``` and I call `qemu` like this and it works as expected : `$ qemu $(