diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-09-29 06:47:54 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-09-29 06:47:54 +0000 |
commit | 9b271cc9977bfe074773412718a50fb82452a45f (patch) | |
tree | c72ffd87f288b2da33f25bd412679b3bff37d161 /default-config/etc/archiso/getshell | |
parent | 49284a96faf1c29b6b05ac70ea5c2ecda03fa75f (diff) | |
download | archiso32-9b271cc9977bfe074773412718a50fb82452a45f.tar.xz |
Corrected DOS newlines... whoops
git-svn-id: http://phraktured.net/archiso@16 00a9fe69-e71b-0410-bb23-df0e5024db41
Diffstat (limited to 'default-config/etc/archiso/getshell')
-rw-r--r-- | default-config/etc/archiso/getshell | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/default-config/etc/archiso/getshell b/default-config/etc/archiso/getshell index 41ec0c6..a6f8775 100644 --- a/default-config/etc/archiso/getshell +++ b/default-config/etc/archiso/getshell @@ -1,9 +1,9 @@ -#!/bin/sh
-
-. /etc/archiso/functions
-
-shell="$(cmdline_param shell)"
-[ -n "${shell}" ] && shell="/bin/bash"
-[ ! -e "${shell}" ] && shell="/bin/sh"
-
-exec ${shell}
+#!/bin/sh + +. /etc/archiso/functions + +shell="$(cmdline_param shell)" +[ -n "${shell}" ] && shell="/bin/bash" +[ ! -e "${shell}" ] && shell="/bin/sh" + +exec ${shell} |