0% found this document useful (0 votes)
7 views

Lab 4

fun mac terminal commands

Uploaded by

kmor
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

Lab 4

fun mac terminal commands

Uploaded by

kmor
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Last login: Mon Sep 2 10:58:09 on ttys001

harshu@HARSHs-MacBook-Air ~ % echo -e"\nenter the path to directory"


-e
enter the path to directory
harshu@HARSHs-MacBook-Air ~ % -e
zsh: command not found: -e
harshu@HARSHs-MacBook-Air ~ %
harshu@HARSHs-MacBook-Air ~ % echo"toda is "'date'
zsh: command not found: echotoda is date
harshu@HARSHs-MacBook-Air ~ % echo "Today is"`date`
Today isMon Sep 2 11:29:39 IST 2024
harshu@HARSHs-MacBook-Air ~ % echo "Today is"'date'
Today isdate
harshu@HARSHs-MacBook-Air ~ % echo -e"\nenter the path to directory"
-e
enter the path to directory
harshu@HARSHs-MacBook-Air ~ % echo -e"\n you path has the following files and
folders:"
-e
you path has the following files and folders:
harshu@HARSHs-MacBook-Air ~ % ls$the_path
Applications Desktop Downloads Library
Music Public hacku.docx
Decode Documents LSP Movies
Pictures Untitled-1.java ~$estions b.docx
harshu@HARSHs-MacBook-Air ~ % my_var="hello,world!"
dquote> "
harshu@HARSHs-MacBook-Air ~ % echo "The value of my_var is: $my_var"
The value of my_var is: hello,world

harshu@HARSHs-MacBook-Air ~ %

You might also like