Error when running .sh file, “cp: cannot stat 'pico-8': No such file or directory”
this might've been asked somewhere else many times, but I'm going to ask it anyway. I'm trying to install Pico8 (Great fantasy console btw.) Heres's the contents of the .sh file.
!/bin/bash -e
echo "Creating /opt/lexaloffle/ ..."
sudo mkdir -p /opt/lexaloffle/
echo "Copying pico8 folder into /opt/lexaloffle/ ..."
!/bin/bash -e
echo "Creating /opt/lexaloffle/ ..."
sudo mkdir -p /opt/lexaloffle/
echo "Copying pico8 folder into /opt/lexaloffle/ ..."
sudo cp -r pico-8 /opt/lexaloffle/
echo "Creating .desktop file..."
sudo touch /usr/share/applications/pico-8.desktop
echo "[Desktop Entry]
Type=Application
Name=Pico 8
GenericName=Fantasy Console
Comment=Lexaloffle's fantasy console
Exec=/opt/lexaloffle/pico-8/pico8
Icon=/opt/lexaloffle/pico-8/lexaloffle-pico8.png
Terminal=false
Categories=GTK;Development;Game Development;
StartupNotify=true
Keywords=pico8;pico;pico-8;lexaloffle;gamedev;
" > pico-8.desktop
sudo mv pico-8.desktop /usr/share/applications/pico-8.desktop
echo "Pico-8 Installed on /opt/lexaloffle/pico-8/"
echo "Creating .desktop file..."
sudo touch /usr/share/applications/pico-8.desktop
echo "[Desktop Entry]
Type=Application
Name=Pico 8
GenericName=Fantasy Console
Comment=Lexaloffle's fantasy console
Exec=/opt/lexaloffle/pico-8/pico8
Icon=/opt/lexaloffle/pico-8/lexaloffle-pico8.png
Terminal=false
Categories=GTK;Development;Game Development;
StartupNotify=true
Keywords=pico8;pico;pico-8;lexaloffle;gamedev;
" > pico-8.desktop
sudo mv pico-8.desktop /usr/share/applications/pico-8.desktop
echo "Pico-8 Installed on /opt/lexaloffle/pico-8/"
It's having troubles at the "sudo cp -r pico-8 /opt/lexaloffle/" command.
Here's the command box.
sh pico8-installer.sh
Creating /opt/lexaloffle/ ...
[sudo] password for tinoposts:
Copying pico8 folder into /opt/lexaloffle/ ...
cp: cannot stat 'pico-8': No such file or directory
Creating .desktop file...
Pico-8 Installed on /opt/lexaloffle/pico-8/
It obviously hasn't been installed. So, what's the big idea?
command-line bash
add a comment |
this might've been asked somewhere else many times, but I'm going to ask it anyway. I'm trying to install Pico8 (Great fantasy console btw.) Heres's the contents of the .sh file.
!/bin/bash -e
echo "Creating /opt/lexaloffle/ ..."
sudo mkdir -p /opt/lexaloffle/
echo "Copying pico8 folder into /opt/lexaloffle/ ..."
!/bin/bash -e
echo "Creating /opt/lexaloffle/ ..."
sudo mkdir -p /opt/lexaloffle/
echo "Copying pico8 folder into /opt/lexaloffle/ ..."
sudo cp -r pico-8 /opt/lexaloffle/
echo "Creating .desktop file..."
sudo touch /usr/share/applications/pico-8.desktop
echo "[Desktop Entry]
Type=Application
Name=Pico 8
GenericName=Fantasy Console
Comment=Lexaloffle's fantasy console
Exec=/opt/lexaloffle/pico-8/pico8
Icon=/opt/lexaloffle/pico-8/lexaloffle-pico8.png
Terminal=false
Categories=GTK;Development;Game Development;
StartupNotify=true
Keywords=pico8;pico;pico-8;lexaloffle;gamedev;
" > pico-8.desktop
sudo mv pico-8.desktop /usr/share/applications/pico-8.desktop
echo "Pico-8 Installed on /opt/lexaloffle/pico-8/"
echo "Creating .desktop file..."
sudo touch /usr/share/applications/pico-8.desktop
echo "[Desktop Entry]
Type=Application
Name=Pico 8
GenericName=Fantasy Console
Comment=Lexaloffle's fantasy console
Exec=/opt/lexaloffle/pico-8/pico8
Icon=/opt/lexaloffle/pico-8/lexaloffle-pico8.png
Terminal=false
Categories=GTK;Development;Game Development;
StartupNotify=true
Keywords=pico8;pico;pico-8;lexaloffle;gamedev;
" > pico-8.desktop
sudo mv pico-8.desktop /usr/share/applications/pico-8.desktop
echo "Pico-8 Installed on /opt/lexaloffle/pico-8/"
It's having troubles at the "sudo cp -r pico-8 /opt/lexaloffle/" command.
Here's the command box.
sh pico8-installer.sh
Creating /opt/lexaloffle/ ...
[sudo] password for tinoposts:
Copying pico8 folder into /opt/lexaloffle/ ...
cp: cannot stat 'pico-8': No such file or directory
Creating .desktop file...
Pico-8 Installed on /opt/lexaloffle/pico-8/
It obviously hasn't been installed. So, what's the big idea?
command-line bash
add a comment |
this might've been asked somewhere else many times, but I'm going to ask it anyway. I'm trying to install Pico8 (Great fantasy console btw.) Heres's the contents of the .sh file.
!/bin/bash -e
echo "Creating /opt/lexaloffle/ ..."
sudo mkdir -p /opt/lexaloffle/
echo "Copying pico8 folder into /opt/lexaloffle/ ..."
!/bin/bash -e
echo "Creating /opt/lexaloffle/ ..."
sudo mkdir -p /opt/lexaloffle/
echo "Copying pico8 folder into /opt/lexaloffle/ ..."
sudo cp -r pico-8 /opt/lexaloffle/
echo "Creating .desktop file..."
sudo touch /usr/share/applications/pico-8.desktop
echo "[Desktop Entry]
Type=Application
Name=Pico 8
GenericName=Fantasy Console
Comment=Lexaloffle's fantasy console
Exec=/opt/lexaloffle/pico-8/pico8
Icon=/opt/lexaloffle/pico-8/lexaloffle-pico8.png
Terminal=false
Categories=GTK;Development;Game Development;
StartupNotify=true
Keywords=pico8;pico;pico-8;lexaloffle;gamedev;
" > pico-8.desktop
sudo mv pico-8.desktop /usr/share/applications/pico-8.desktop
echo "Pico-8 Installed on /opt/lexaloffle/pico-8/"
echo "Creating .desktop file..."
sudo touch /usr/share/applications/pico-8.desktop
echo "[Desktop Entry]
Type=Application
Name=Pico 8
GenericName=Fantasy Console
Comment=Lexaloffle's fantasy console
Exec=/opt/lexaloffle/pico-8/pico8
Icon=/opt/lexaloffle/pico-8/lexaloffle-pico8.png
Terminal=false
Categories=GTK;Development;Game Development;
StartupNotify=true
Keywords=pico8;pico;pico-8;lexaloffle;gamedev;
" > pico-8.desktop
sudo mv pico-8.desktop /usr/share/applications/pico-8.desktop
echo "Pico-8 Installed on /opt/lexaloffle/pico-8/"
It's having troubles at the "sudo cp -r pico-8 /opt/lexaloffle/" command.
Here's the command box.
sh pico8-installer.sh
Creating /opt/lexaloffle/ ...
[sudo] password for tinoposts:
Copying pico8 folder into /opt/lexaloffle/ ...
cp: cannot stat 'pico-8': No such file or directory
Creating .desktop file...
Pico-8 Installed on /opt/lexaloffle/pico-8/
It obviously hasn't been installed. So, what's the big idea?
command-line bash
this might've been asked somewhere else many times, but I'm going to ask it anyway. I'm trying to install Pico8 (Great fantasy console btw.) Heres's the contents of the .sh file.
!/bin/bash -e
echo "Creating /opt/lexaloffle/ ..."
sudo mkdir -p /opt/lexaloffle/
echo "Copying pico8 folder into /opt/lexaloffle/ ..."
!/bin/bash -e
echo "Creating /opt/lexaloffle/ ..."
sudo mkdir -p /opt/lexaloffle/
echo "Copying pico8 folder into /opt/lexaloffle/ ..."
sudo cp -r pico-8 /opt/lexaloffle/
echo "Creating .desktop file..."
sudo touch /usr/share/applications/pico-8.desktop
echo "[Desktop Entry]
Type=Application
Name=Pico 8
GenericName=Fantasy Console
Comment=Lexaloffle's fantasy console
Exec=/opt/lexaloffle/pico-8/pico8
Icon=/opt/lexaloffle/pico-8/lexaloffle-pico8.png
Terminal=false
Categories=GTK;Development;Game Development;
StartupNotify=true
Keywords=pico8;pico;pico-8;lexaloffle;gamedev;
" > pico-8.desktop
sudo mv pico-8.desktop /usr/share/applications/pico-8.desktop
echo "Pico-8 Installed on /opt/lexaloffle/pico-8/"
echo "Creating .desktop file..."
sudo touch /usr/share/applications/pico-8.desktop
echo "[Desktop Entry]
Type=Application
Name=Pico 8
GenericName=Fantasy Console
Comment=Lexaloffle's fantasy console
Exec=/opt/lexaloffle/pico-8/pico8
Icon=/opt/lexaloffle/pico-8/lexaloffle-pico8.png
Terminal=false
Categories=GTK;Development;Game Development;
StartupNotify=true
Keywords=pico8;pico;pico-8;lexaloffle;gamedev;
" > pico-8.desktop
sudo mv pico-8.desktop /usr/share/applications/pico-8.desktop
echo "Pico-8 Installed on /opt/lexaloffle/pico-8/"
It's having troubles at the "sudo cp -r pico-8 /opt/lexaloffle/" command.
Here's the command box.
sh pico8-installer.sh
Creating /opt/lexaloffle/ ...
[sudo] password for tinoposts:
Copying pico8 folder into /opt/lexaloffle/ ...
cp: cannot stat 'pico-8': No such file or directory
Creating .desktop file...
Pico-8 Installed on /opt/lexaloffle/pico-8/
It obviously hasn't been installed. So, what's the big idea?
command-line bash
command-line bash
asked 20 mins ago
TinoPostsTinoPosts
1
1
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1118865%2ferror-when-running-sh-file-cp-cannot-stat-pico-8-no-such-file-or-director%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1118865%2ferror-when-running-sh-file-cp-cannot-stat-pico-8-no-such-file-or-director%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown