Re: [arch-general] [arch-dev-public] [RFC] Rewrite early RTC device creation
9 Jun
2010
9 Jun
'10
2:21 a.m.
On Tue, Jun 8, 2010 at 9:23 PM, Dan McGee <dpmcgee@gmail.com> wrote:
We can also just do some bash string manipulation and leave sed out of the picture:
devnum=$(cat /sys/class/rtc/rtc0/dev) /bin/mknod /dev/rtc0 c ${devnum/:/ }
Since you're already using a ${foo/bar/baz} bashism, that's a useless use of cat: devnum=$(< /sys/class/rtc/rtc0/dev) And the subshell is also unnecesary: read -r devnum < /sys/class/rtc/rtc0/dev The second one is posix... Andres P
5310
Age (days ago)
5310
Last active (days ago)
0 comments
1 participants
participants (1)
-
Andres P