-
Notifications
You must be signed in to change notification settings - Fork 402
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace bad style var=$(cat file)
with read -r var < file
#2093
Labels
enhancement
Issue adding new functionality
Comments
keentux
added a commit
to keentux/dracut
that referenced
this issue
Nov 29, 2022
Fixe dracutdevs#2093: Bad style `var=$(cat <file>)`. Replace by `read -r var < file` Modules impacted: 01fips, 35conmon, 35network-legacy, 40network, 45ifcfg, 80cms, 90dm, 90dmsquash-live-autooverlay, 95fcoe, 95iscsi, 95lunmask, 95nfs, 95nvmf, 95rootfs-block, 97masterkey, 98ecryptfs, 98usrmount, 99base Signed-off-by: keentux <valentin.lefebvre@suse.com>
keentux
added a commit
to keentux/dracut
that referenced
this issue
Dec 7, 2022
Fixes dracutdevs#2093: Bad style `var=$(cat <file>)`. Replace by `read -r var < file` Signed-off-by: keentux <valentin.lefebvre@suse.com>
keentux
added a commit
to keentux/dracut
that referenced
this issue
Dec 12, 2022
Fixes dracutdevs#2093: Bad style `var=$(cat <file>)`. Replace by `read -r var < file` Signed-off-by: keentux <valentin.lefebvre@suse.com>
aafeijoo-suse
pushed a commit
that referenced
this issue
Dec 19, 2022
Fixes #2093: Bad style `var=$(cat <file>)`. Replace by `read -r var < file` Signed-off-by: keentux <valentin.lefebvre@suse.com>
pvalena
pushed a commit
to pvalena/dracut
that referenced
this issue
Jul 23, 2023
Fixes dracutdevs#2093: Bad style `var=$(cat <file>)`. Replace by `read -r var < file` Signed-off-by: keentux <valentin.lefebvre@suse.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Following #1268, check what
var=$(cat file)
can be replaced withread -r var < file
:The text was updated successfully, but these errors were encountered: