Home>
I'm a linux beginner. I have a question about getting my command log. I set the following in .bash_profile.
script -f -a ../../ etc/hoge/hoge.log
I got a log, but very politely every time I log in
Started script, file is script -f -a ../../ etc/hoge/hoge.log
When you log in, the message is displayed as above.
This message
Started script, file is script -f -a ../../ etc/hoge/hoge.log
How can I run a command to hide?
What you ’ve tried>Try/dev/null
script -f -a ../../etc/hoge/hoge.log>/dev/null
I cannot log in. If i am familiar with the details, I will be sorry for the inconvenience, but I would appreciate it if you could give me a specific code. Thanking you in advance.
-
Answer # 1
Related articles
- trying to get php to work with html files
- python 3x - can't get data with python scraping
- help me with swift get and set!
- ruby - i get an error with rails s
- get today's date with javascript
- c ++ - i get an error with strcpy
- linux - rsys server separate logs for each host
- python - can't get channel with discord
- javascript - i want to get ajax with rails
- unable to get wp rest api with laravel
- i can't do go get with docker-compose
- linux - i want to get the last part of the echoed string
- java - i get an error with mvn install
- i get an error with cs0104 in c#
- numpy - get the column with the loc method
- i want to get a percentage with calc of css
- linux - i get an error when vagrant up
- javascript - i get an error with split
- c # - i want to get a datatable with linq and then outer join
- i get an error with c ++ opencv
Related questions
- linux - about bash version upgrade
- linux - about the meaning of metacharacters
- linux - [awk] ① i want to store $0 in a variable ② i can't output with echo instead of print
- linux : What does this command do?
- linux - i want to pass here document to variable
- linux - array is garbled in shell script
- perl - extraction and processing from a text file under multiple specified conditions
- linux - i want to download images from my vpn to my mac by rsync etc
- linux - command to count the number of files in the folder two below
- linux - how to align multiple outputs horizontally and output to csv
What about the -q option?