输出的视频转换成MP4后里面的内容没有了,是什么原因呢?
600
2022-05-30
ECS信息
规格:2vCPUs | 4GiB | kc1.large.2
镜像:openEuler 20.03 64bit with ARM | 公共镜像
Linux shell 输出helloworld
# vim hello.sh #!/bin/bash echo 'hello world' echo 'hello'
# bash hello.sh hello world hello
当前工作目录不在PATH变量中,所以command not found
# echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin # pwd /home # hello.sh -bash: hello.sh: command not found
没有执行权限,所以Permission denied
# ./hello.sh -bash: ./hello.sh: Permission denied
# ll total 4.0K -rw------- 1 root root 44 Oct 3 16:39 hello.sh # chmod u+x hello.sh # ll total 4.0K -rwx------ 1 root root 44 Oct 3 16:39 hello.sh
# ./hello.sh hello world hello
学习资料
弹性云服务器 ECS
openEuler-官网
openEuler-B站
openEuler-慕课
openEuler-文档
鲲鹏社区
欢迎各位同学一起来交流学习心得^_^
Linux openEuler Shell
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。